From 9f9f41272afccebc0311b7873c4b35500e6cecb6 Mon Sep 17 00:00:00 2001 From: Lucy Date: Sun, 8 Sep 2024 19:23:00 -0400 Subject: [PATCH] Ports several book-related PRs from /tg/ (#2454) * Adds book burning (#74873) For some reason, unlike other paper items, you couldn't ignite books with a lighter or other hot item. Now, you can! (Also made it so the odd obscure mechanic of cutting pages out of books can be done by any sharp item, not just wirecutters or knives) Consistency. ~~Burning copies of WGW.~~ :cl: add: Books can now be burned just like any other paper item. add: You can cut pages out of books with any sharp item, not just knives or wirecutters. /:cl: --------- Co-authored-by: san7890 * Books now render Markdown, fixing paper importing (#74902) Books didn't render markdown and instead just dumped the raw contents, (after a html encode), into the window. Changes them to use tgui and support markdown rendering. Books should should look the same as the paper used to make them. :cl: fix: Book's no longer take your formatting and throw it out the window. refactor: Book display and rendering /:cl: --------- Co-authored-by: GoldenAlpharex <58045821+GoldenAlpharex@users.noreply.github.com> Co-authored-by: Mothblocks <35135081+Mothblocks@users.noreply.github.com> * Allows the book binder to remember font typing (#75007) use that for book binding ## About The Pull Request Closes https://github.com/tgstation/tgstation/issues/74996 ## Why It's Good For The Game ## Changelog :cl: fix: Bookbinder no longer takes your pen's font and throws it out the nearest window /:cl: * Bible refactor (#75350) This started as a simple addition where burning a bible would curse you, but then I realized... Bibles aren't even proper books, thus can't be burned! So yeah, since that is not necessary due to how atom_storage works, I reworked that. Because burning bibles and getting cursed for it is funny. ![image](https://github.com/tgstation/tgstation/assets/82850673/2a8489ce-ecd6-45ee-9eb9-168ff820af65) ![image](https://github.com/tgstation/tgstation/assets/82850673/ebe98ad6-2d0d-4d20-9ea1-5d472d6ca465) :cl: add: You can burn bibles now! But heresy has a steep cost... /:cl: --------- Co-authored-by: san7890 * Finish repathing * fix all maps * refix maps * ensure maps are all proper --------- Co-authored-by: ChungusGamer666 <82850673+ChungusGamer666@users.noreply.github.com> Co-authored-by: san7890 Co-authored-by: Zephyr <12817816+ZephyrTFA@users.noreply.github.com> Co-authored-by: GoldenAlpharex <58045821+GoldenAlpharex@users.noreply.github.com> Co-authored-by: Mothblocks <35135081+Mothblocks@users.noreply.github.com> --- ...cemoon_underground_abandoned_homestead.dmm | 2 +- _maps/RandomRuins/SpaceRuins/clericden.dmm | 2 +- .../SpaceRuins/dangerous_research.dmm | 2672 +-- .../SpaceRuins/russian_derelict.dmm | 164 +- _maps/map_files/Blueshift/Blueshift.dmm | 2034 +- _maps/map_files/BoxStation/BoxStation.dmm | 426 +- .../map_files/Deltastation/DeltaStation2.dmm | 534 +- .../map_files/IceBoxStation/IceBoxStation.dmm | 456 +- _maps/map_files/KiloStation/KiloStation.dmm | 414 +- _maps/map_files/MetaStation/MetaStation.dmm | 348 +- _maps/map_files/NorthStar/north_star.dmm | 16438 ++++++++-------- _maps/map_files/generic/CentCom.dmm | 192 +- .../dormmedupper_attachment_a_3.dmm | 6 +- _maps/map_files/tramstation/tramstation.dmm | 530 +- _maps/shuttles/emergency_monastery.dmm | 86 +- _maps/templates/holodeck_chapelcourt.dmm | 308 +- _maps/templates/lazy_templates/ninja_den.dmm | 94 +- .../RandomBars/Icebox/cultbar_icebox.dmm | 224 +- code/__DEFINES/achievements.dm | 1 + code/__DEFINES/is_helpers.dm | 2 +- code/datums/achievements/misc_achievements.dm | 5 + code/datums/components/crafting/tailoring.dm | 2 +- code/datums/components/omen.dm | 59 +- code/datums/components/religious_tool.dm | 2 +- code/datums/memory/general_memories.dm | 46 + code/datums/quirks/positive_quirks.dm | 2 +- code/game/objects/items/granters/_granters.dm | 2 +- code/game/objects/items/storage/bags.dm | 2 +- code/game/objects/items/storage/book.dm | 306 - code/modules/admin/smites/bad_luck.dm | 5 +- .../antagonists/revenant/haunted_item.dm | 2 +- code/modules/asset_cache/assets/bibles.dm | 2 +- .../mission_code/stationCollision.dm | 20 +- code/modules/cargo/packs/general.dm | 2 +- code/modules/clothing/suits/bio.dm | 2 +- code/modules/clothing/suits/costume.dm | 4 +- .../jobs/job_types/chaplain/chaplain.dm | 50 +- .../job_types/chaplain/chaplain_costumes.dm | 10 +- code/modules/library/bibles.dm | 367 + code/modules/library/book.dm | 169 +- code/modules/library/book_info.dm | 74 + code/modules/library/lib_machines.dm | 2 +- .../lavalandruin_code/elephantgraveyard.dm | 2 +- code/modules/mob/living/carbon/death.dm | 8 +- code/modules/paperwork/paper.dm | 24 +- .../uplink/uplink_items/device_tools.dm | 2 +- icons/ui_icons/achievements/achievements.dmi | Bin 233319 -> 244838 bytes .../code/game/objects/items/storage/book.dm | 4 +- .../modules/ghost_players/arena/maps/snow.dmm | 2 +- .../modules/mob/living/carbon/human/emotes.dm | 2 +- .../modules/surgery/organs/internal/butts.dm | 2 +- .../code/modules/uplink/uplink_items/job.dm | 2 +- tgstation.dme | 3 +- .../UpdatePaths/75350_book_storage_repath.txt | 1 + .../Scripts/75350_book_storage_repath.txt | 1 + 55 files changed, 12997 insertions(+), 13124 deletions(-) delete mode 100644 code/game/objects/items/storage/book.dm create mode 100644 code/modules/library/bibles.dm create mode 100644 code/modules/library/book_info.dm create mode 100644 tools/UpdatePaths/75350_book_storage_repath.txt create mode 100644 tools/UpdatePaths/Scripts/75350_book_storage_repath.txt diff --git a/_maps/RandomRuins/IceRuins/icemoon_underground_abandoned_homestead.dmm b/_maps/RandomRuins/IceRuins/icemoon_underground_abandoned_homestead.dmm index 5ab59bf79dab..d1ee1326b19b 100644 --- a/_maps/RandomRuins/IceRuins/icemoon_underground_abandoned_homestead.dmm +++ b/_maps/RandomRuins/IceRuins/icemoon_underground_abandoned_homestead.dmm @@ -185,7 +185,7 @@ pixel_x = -3; pixel_y = 3 }, -/obj/item/storage/book/bible{ +/obj/item/book/bible{ pixel_y = 5 }, /obj/item/flashlight/flare/candle{ diff --git a/_maps/RandomRuins/SpaceRuins/clericden.dmm b/_maps/RandomRuins/SpaceRuins/clericden.dmm index 5b1782559aed..c6e6bebddb0b 100644 --- a/_maps/RandomRuins/SpaceRuins/clericden.dmm +++ b/_maps/RandomRuins/SpaceRuins/clericden.dmm @@ -180,7 +180,7 @@ /turf/open/floor/plating/airless, /area/ruin/space) "Q" = ( -/obj/item/storage/book/bible, +/obj/item/book/bible, /obj/effect/decal/cleanable/blood, /turf/open/misc/asteroid/airless, /area/ruin/space) diff --git a/_maps/RandomRuins/SpaceRuins/dangerous_research.dmm b/_maps/RandomRuins/SpaceRuins/dangerous_research.dmm index 4649d32d2626..06c63b2ce2df 100644 --- a/_maps/RandomRuins/SpaceRuins/dangerous_research.dmm +++ b/_maps/RandomRuins/SpaceRuins/dangerous_research.dmm @@ -6,27 +6,14 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/ruin/space/has_grav/dangerous_research) -"ae" = ( -/obj/structure/table, -/obj/machinery/light/small/directional/west, -/obj/item/storage/book/bible{ - pixel_x = 3 - }, -/obj/item/book/manual/wiki/cytology{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/paper/fluff/ruins/dangerous_research/armstrong_memo_2, -/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ +"aq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral/diagonal_edge, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 }, -/turf/open/floor/iron/dark/corner, +/turf/open/floor/iron/dark/diagonal, /area/ruin/space/has_grav/dangerous_research/dorms) -"ak" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/ruin/space/has_grav/dangerous_research/medical) "at" = ( /obj/machinery/light/dim/directional/east, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -48,22 +35,6 @@ }, /turf/open/floor/iron/white, /area/ruin/space/has_grav/dangerous_research/lab) -"aB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/item/reagent_containers/hypospray/medipen/morphine{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/reagent_containers/hypospray/medipen/morphine, -/obj/item/reagent_containers/cup/bottle/morphine, -/obj/item/reagent_containers/syringe, -/obj/structure/sign/warning/directional/north, -/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/ruin/space/has_grav/dangerous_research/lab) "aD" = ( /obj/effect/turf_decal/tile/neutral/diagonal_edge, /turf/open/floor/iron/dark/diagonal, @@ -75,20 +46,33 @@ }, /turf/open/floor/iron/white, /area/ruin/space/has_grav/dangerous_research/medical) +"aT" = ( +/obj/effect/turf_decal/trimline/purple/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/effect/mapping_helpers/apc/away_general_access, +/turf/open/floor/iron/white, +/area/ruin/space/has_grav/dangerous_research/medical) +"aU" = ( +/obj/structure/closet{ + name = "Outpost Security Locker" + }, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/effect/spawner/random/contraband/permabrig_weapon, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/ammo_box/c38, +/obj/effect/turf_decal/tile/dark_red/anticorner, +/turf/open/floor/iron/dark, +/area/ruin/space/has_grav/dangerous_research) "aW" = ( /obj/structure/window/reinforced/spawner/directional/south, /obj/structure/cable, /obj/effect/turf_decal/tile/neutral/opposingcorners, /turf/open/floor/iron/dark, /area/ruin/space/has_grav/dangerous_research/lab) -"aY" = ( -/obj/effect/turf_decal/trimline/purple/corner{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/computer/security/telescreen/entertainment/directional/south, -/turf/open/floor/iron/white, -/area/ruin/space/has_grav/dangerous_research/medical) "aZ" = ( /obj/item/storage/backpack/duffelbag/med/surgery, /obj/structure/table, @@ -99,57 +83,36 @@ icon_state = "asteroid5" }, /area/ruin/space) -"bl" = ( -/obj/effect/turf_decal/tile/neutral/diagonal_edge, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark/diagonal, -/area/ruin/space/has_grav/dangerous_research/dorms) "bu" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/tile/neutral/opposingcorners, /turf/open/floor/iron/dark, /area/ruin/space/has_grav/dangerous_research/dorms) -"bO" = ( -/obj/effect/turf_decal/trimline/purple/line{ +"bI" = ( +/obj/effect/turf_decal/stripes/asteroid{ dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ +/obj/effect/decal/cleanable/blood/gibs/torso, +/obj/effect/decal/cleanable/blood/footprints, +/obj/effect/decal/cleanable/blood/footprints{ dir = 1 }, -/turf/open/floor/iron/white, -/area/ruin/space/has_grav/dangerous_research/medical) -"bP" = ( -/obj/structure/bed, -/obj/structure/sign/poster/contraband/interdyne_gene_clinics/directional/east, -/obj/effect/spawner/random/contraband/narcotics, -/obj/item/bedsheet/purple, -/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark/corner{ - dir = 8 +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/iron/dark, +/area/ruin/space/has_grav/dangerous_research/lab) +"ca" = ( +/obj/structure/chair/office{ + dir = 1 }, -/area/ruin/space/has_grav/dangerous_research/dorms) +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral/opposingcorners, +/turf/open/floor/iron/dark, +/area/ruin/space/has_grav/dangerous_research/lab) "cd" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/ruin/space/has_grav/dangerous_research/lab) -"ce" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/showroomfloor, -/area/ruin/space/has_grav/dangerous_research/dorms) -"ci" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/wallframe/camera, -/obj/effect/decal/cleanable/robot_debris, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/ruin/space/has_grav/dangerous_research/lab) "cl" = ( /obj/structure/table, /obj/structure/window/reinforced/spawner/directional/east, @@ -171,6 +134,14 @@ }, /turf/open/floor/iron/dark, /area/ruin/space/has_grav/dangerous_research/lab) +"cq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/official/work_for_a_future/directional/north, +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark/corner, +/area/ruin/space/has_grav/dangerous_research/dorms) "cv" = ( /obj/structure/chair/office{ dir = 4 @@ -179,6 +150,10 @@ /obj/effect/turf_decal/tile/neutral/opposingcorners, /turf/open/floor/iron/dark, /area/ruin/space/has_grav/dangerous_research/lab) +"cA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/showroomfloor, +/area/ruin/space/has_grav/dangerous_research/dorms) "cN" = ( /obj/structure/reagent_dispensers/water_cooler, /obj/effect/turf_decal/tile/purple/anticorner/contrasted{ @@ -213,32 +188,18 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/ruin/space/has_grav/dangerous_research/dorms) -"dm" = ( -/obj/effect/turf_decal/tile/neutral/diagonal_edge, -/obj/item/food/donkpocket/spicy, -/obj/item/food/ready_donk, -/obj/item/food/ready_donk/mac_n_cheese, -/obj/structure/sign/poster/contraband/donk_co/directional/west, -/obj/machinery/light/dim/directional/west, -/obj/structure/closet/secure_closet/freezer/empty{ - name = "fridge" - }, -/turf/open/floor/iron/dark/diagonal, -/area/ruin/space/has_grav/dangerous_research) "do" = ( /turf/open/misc/asteroid/airless{ icon_state = "asteroid10" }, /area/ruin/space) -"dw" = ( +"dt" = ( /obj/structure/table, +/obj/effect/turf_decal/tile/neutral/diagonal_edge, /obj/effect/decal/cleanable/dirt, -/obj/item/paper/fluff/ruins/dangerous_research/armstrong_memo_3, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/ruin/space/has_grav/dangerous_research/lab) +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron/dark/diagonal, +/area/ruin/space/has_grav/dangerous_research/dorms) "dy" = ( /obj/effect/decal/cleanable/blood/footprints{ dir = 8 @@ -250,16 +211,13 @@ /obj/effect/turf_decal/tile/purple, /turf/open/floor/iron/white, /area/ruin/space/has_grav/dangerous_research/lab) -"dC" = ( -/obj/structure/rack, -/obj/item/electronics/airlock, -/obj/item/electronics/airlock, -/obj/item/electronics/airlock, +"dH" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/pen/screwdriver, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted, -/turf/open/floor/iron, -/area/ruin/space/has_grav/dangerous_research/maint) +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/ruin/space/has_grav/dangerous_research/lab) "dI" = ( /obj/effect/turf_decal/stripes/corner{ dir = 8 @@ -267,6 +225,12 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron/white, /area/ruin/space/has_grav/dangerous_research/lab) +"dN" = ( +/obj/effect/turf_decal/trimline/purple/line, +/obj/machinery/chem_heater/withbuffer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/white, +/area/ruin/space/has_grav/dangerous_research/medical) "dX" = ( /obj/structure/chair{ dir = 8 @@ -292,22 +256,28 @@ /obj/effect/turf_decal/tile/neutral/opposingcorners, /turf/open/floor/iron/dark, /area/ruin/space/has_grav/dangerous_research/lab) +"eg" = ( +/obj/machinery/atmospherics/components/binary/pump/layer2{ + name = "Scrubbers To External" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/turf/open/floor/iron, +/area/ruin/space/has_grav/dangerous_research/maint) +"ek" = ( +/obj/effect/turf_decal/tile/neutral/diagonal_edge, +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/sofa/bench/left{ + dir = 4 + }, +/turf/open/floor/iron/dark/diagonal, +/area/ruin/space/has_grav/dangerous_research) "eq" = ( /obj/effect/turf_decal/tile/purple/anticorner/contrasted{ dir = 4 }, /turf/open/floor/iron/white, /area/ruin/space/has_grav/dangerous_research/lab) -"eu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/ruin/space/has_grav/dangerous_research/lab) "ey" = ( /obj/effect/turf_decal/tile/neutral/diagonal_edge, /obj/structure/table, @@ -316,6 +286,31 @@ }, /turf/open/floor/iron/dark/diagonal, /area/ruin/space/has_grav/dangerous_research) +"eI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/north, +/turf/open/floor/wood/parquet, +/area/ruin/space/has_grav/dangerous_research/dorms) +"eN" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/effect/mapping_helpers/apc/away_general_access, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/oil/slippery, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 4 + }, +/turf/open/floor/iron, +/area/ruin/space/has_grav/dangerous_research/maint) +"eO" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/ruin/space/has_grav/dangerous_research/maint) "eQ" = ( /obj/structure/table, /obj/item/toy/nuke, @@ -337,40 +332,20 @@ /obj/structure/window/reinforced/spawner/directional/north, /turf/open/floor/iron/dark, /area/ruin/space/has_grav/dangerous_research/lab) -"fg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/siding/dark{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/half{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/ruin/space/has_grav/dangerous_research/lab) "fi" = ( /obj/effect/turf_decal/tile/purple, /turf/open/floor/iron/white, /area/ruin/space/has_grav/dangerous_research/lab) -"fm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/iron/white, -/area/ruin/space/has_grav/dangerous_research/medical) -"fn" = ( -/obj/item/trash/can{ - pixel_x = -8 +"fj" = ( +/obj/structure/chair/office{ + dir = 1 }, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/bubblegum, -/obj/machinery/light/very_dim/directional/west, -/obj/effect/turf_decal/tile/neutral/half{ - dir = 4 +/obj/effect/turf_decal/tile/purple/anticorner/contrasted, +/turf/open/floor/iron/dark/corner{ + dir = 1 }, -/turf/open/floor/iron/dark, -/area/ruin/space/has_grav/dangerous_research/lab) +/area/ruin/space/has_grav/dangerous_research/dorms) "fo" = ( /obj/machinery/light/broken/directional/east, /obj/effect/turf_decal/tile/purple/half/contrasted{ @@ -392,6 +367,18 @@ /obj/structure/window/reinforced/spawner/directional/west, /turf/open/floor/iron/dark, /area/ruin/space/has_grav/dangerous_research/lab) +"fC" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/mineral/plasma/thirty, +/obj/item/stack/sheet/mineral/wood/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/plasteel{ + amount = 30 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/ruin/space/has_grav/dangerous_research/maint) "fE" = ( /obj/structure/table, /obj/structure/window/reinforced/spawner/directional/east, @@ -400,15 +387,6 @@ /obj/effect/turf_decal/tile/neutral/opposingcorners, /turf/open/floor/iron/dark, /area/ruin/space/has_grav/dangerous_research/lab) -"fH" = ( -/obj/structure/sink/directional/south, -/obj/structure/mirror/directional/east, -/obj/effect/decal/cleanable/dirt, -/obj/item/radio{ - pixel_x = -8 - }, -/turf/open/floor/iron/white, -/area/ruin/space/has_grav/dangerous_research/lab) "fJ" = ( /obj/structure/fluff/paper/stack{ dir = 9 @@ -440,45 +418,43 @@ }, /turf/open/floor/iron/white, /area/ruin/space/has_grav/dangerous_research/lab) -"fT" = ( +"fS" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/red/directional/north, -/turf/open/floor/iron, -/area/ruin/space/has_grav/dangerous_research/maint) -"gl" = ( -/obj/effect/spawner/structure/window/reinforced/plasma, -/obj/effect/spawner/structure/window/reinforced/plasma, -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/visible, -/turf/open/floor/plating, -/area/ruin/space/has_grav/dangerous_research/maint) -"go" = ( -/obj/structure/cable, +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/tile/purple/half/contrasted, +/turf/open/floor/iron/white, +/area/ruin/space/has_grav/dangerous_research) +"gb" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 +/obj/structure/sign/poster/contraband/syndiemoth/directional/north, +/obj/effect/turf_decal/tile/dark_red/half{ + dir = 1 }, -/turf/open/floor/iron, +/turf/open/floor/iron/dark, +/area/ruin/space/has_grav/dangerous_research) +"gk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood/parquet, +/area/ruin/space/has_grav/dangerous_research/dorms) +"gl" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/obj/effect/spawner/structure/window/reinforced/plasma, +/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/visible, +/turf/open/floor/plating, /area/ruin/space/has_grav/dangerous_research/maint) "gr" = ( /obj/structure/cable, /obj/machinery/power/smes/engineering, /turf/open/floor/plating, /area/ruin/space/has_grav/dangerous_research/maint) -"gt" = ( +"gz" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/table/wood, -/obj/item/folder/syndicate/red, -/obj/item/paper/fluff/ruins/dangerous_research/head_occultist_note, -/obj/item/stamp/syndicate{ - pixel_x = -6 +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 4 }, -/obj/machinery/button/door/directional/east{ - id = "asrc_supply"; - name = "Supply Closet Access"; - req_access = list("away_command") +/turf/open/floor/iron/dark/corner{ + dir = 8 }, -/turf/open/floor/wood/parquet, /area/ruin/space/has_grav/dangerous_research/dorms) "gF" = ( /obj/item/trash/can/food/peaches/maint, @@ -489,6 +465,15 @@ }, /turf/open/floor/iron/dark, /area/ruin/space/has_grav/dangerous_research/lab) +"gG" = ( +/obj/item/trash/cheesie, +/obj/structure/sign/poster/ripped/directional/south, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/turf_decal/tile/neutral/half{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/ruin/space/has_grav/dangerous_research/lab) "gH" = ( /obj/structure/table, /obj/structure/window/reinforced/spawner/directional/east, @@ -511,49 +496,68 @@ }, /turf/open/floor/iron/white, /area/ruin/space/has_grav/dangerous_research/medical) +"gT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/item/reagent_containers/hypospray/medipen/morphine{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/reagent_containers/hypospray/medipen/morphine, +/obj/item/reagent_containers/cup/bottle/morphine, +/obj/item/reagent_containers/syringe, +/obj/structure/sign/warning/directional/north, +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/ruin/space/has_grav/dangerous_research/lab) "gY" = ( /obj/structure/flora/grass/brown/style_2, /turf/open/misc/sandy_dirt, /area/ruin/space/has_grav/dangerous_research) -"he" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/flag/ssc/directional/west, +"hb" = ( +/obj/structure/bed, +/obj/structure/sign/poster/contraband/interdyne_gene_clinics/directional/east, +/obj/effect/spawner/random/contraband/narcotics, +/obj/item/bedsheet/purple, /obj/effect/turf_decal/tile/purple/anticorner/contrasted{ - dir = 8 + dir = 4 }, /turf/open/floor/iron/dark/corner{ - dir = 4 + dir = 8 }, /area/ruin/space/has_grav/dangerous_research/dorms) -"hI" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 +"hf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 1 }, -/obj/effect/decal/cleanable/blood/gibs/limb, -/obj/effect/decal/cleanable/blood/footprints, -/obj/effect/decal/cleanable/blood/footprints{ - dir = 4 +/turf/open/floor/iron/dark/corner, +/area/ruin/space/has_grav/dangerous_research/dorms) +"hp" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/item/paper/fluff/ruins/dangerous_research/armstrong_memo_3, +/obj/effect/turf_decal/tile/purple{ + dir = 1 }, -/obj/effect/decal/cleanable/blood/bubblegum, -/obj/item/organ/internal/appendix, -/obj/structure/window/reinforced/spawner/directional/south, -/obj/structure/window/reinforced/spawner/directional/west, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/iron/dark, +/turf/open/floor/iron/white, /area/ruin/space/has_grav/dangerous_research/lab) -"hL" = ( +"hD" = ( +/obj/structure/closet/l3closet/scientist, /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/diagonal_edge, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/dark/diagonal, -/area/ruin/space/has_grav/dangerous_research/dorms) -"hS" = ( -/obj/machinery/door/window/left/directional/west{ - name = "Subject Pen" +/obj/effect/turf_decal/tile/purple{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/white, -/area/ruin/space/has_grav/dangerous_research/lab) +/area/ruin/space/has_grav/dangerous_research/medical) +"hP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/purple/diagonal_edge, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/diagonal, +/area/ruin/space/has_grav/dangerous_research) "hV" = ( /obj/effect/decal/cleanable/blood/footprints{ dir = 4 @@ -584,22 +588,16 @@ /obj/effect/turf_decal/tile/blue/fourcorners, /turf/open/floor/iron/white, /area/ruin/space/has_grav/dangerous_research/medical) -"iw" = ( -/obj/effect/turf_decal/trimline/purple/line, -/obj/machinery/chem_heater/withbuffer, +"is" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/white, -/area/ruin/space/has_grav/dangerous_research/medical) -"ix" = ( -/obj/effect/turf_decal/trimline/purple/line{ - dir = 1 +/obj/effect/turf_decal/siding/dark{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/ruin/space/has_grav/dangerous_research/medical) +/obj/effect/turf_decal/tile/neutral/half{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/ruin/space/has_grav/dangerous_research/lab) "iD" = ( /obj/structure/table, /obj/structure/window/reinforced/spawner/directional/west, @@ -621,6 +619,13 @@ }, /turf/open/floor/plating/rust, /area/ruin/space/has_grav/dangerous_research/lab) +"iG" = ( +/obj/effect/turf_decal/tile/neutral/diagonal_edge, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/diagonal, +/area/ruin/space/has_grav/dangerous_research/dorms) "iR" = ( /obj/structure/table, /obj/structure/window/reinforced/spawner/directional/west, @@ -662,13 +667,6 @@ /obj/effect/turf_decal/tile/neutral/opposingcorners, /turf/open/floor/iron/dark, /area/ruin/space/has_grav/dangerous_research/dorms) -"jk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/purple/anticorner/contrasted, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/ruin/space/has_grav/dangerous_research/dorms) "jm" = ( /obj/structure/barricade/wooden/crude, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -685,19 +683,6 @@ }, /turf/open/floor/iron/white, /area/ruin/space/has_grav/dangerous_research/lab) -"js" = ( -/obj/structure/rack, -/obj/item/storage/box/swab, -/obj/item/storage/medkit/regular{ - empty = 1; - name = "First-Aid (empty)" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/ruin/space/has_grav/dangerous_research/maint) "jv" = ( /obj/effect/turf_decal/stripes/asteroid{ dir = 8 @@ -734,34 +719,15 @@ /obj/effect/turf_decal/tile/neutral/diagonal_edge, /turf/open/floor/iron/dark/diagonal, /area/ruin/space/has_grav/dangerous_research/dorms) -"jF" = ( -/obj/machinery/light/broken/directional/north, +"jG" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/chair{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/ruin/space/has_grav/dangerous_research/lab) +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron, +/area/ruin/space/has_grav/dangerous_research/maint) "jH" = ( /obj/effect/turf_decal/stripes/asteroid, /turf/open/floor/iron/white, /area/ruin/space/has_grav/dangerous_research/lab) -"jJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark/corner, -/area/ruin/space/has_grav/dangerous_research/dorms) -"jL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/electric_shock/directional/east, -/obj/effect/turf_decal/tile/purple/opposingcorners, -/turf/open/floor/iron/white, -/area/ruin/space/has_grav/dangerous_research/medical) "jO" = ( /turf/open/misc/asteroid/airless{ icon_state = "asteroid9" @@ -770,6 +736,27 @@ "jR" = ( /turf/closed/wall/r_wall, /area/ruin/space/has_grav/dangerous_research/maint) +"jU" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/mineral/wood, +/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/ruin/space/has_grav/dangerous_research/medical) +"kb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/ruin/space/has_grav/dangerous_research/lab) "kc" = ( /obj/machinery/air_sensor{ chamber_id = "asrc_b" @@ -785,11 +772,6 @@ /obj/machinery/light/dim/directional/north, /turf/open/floor/iron/dark, /area/ruin/space/has_grav/dangerous_research) -"kj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/ruin/space/has_grav/dangerous_research/maint) "kz" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -800,14 +782,6 @@ /obj/machinery/light/broken/directional/north, /turf/open/floor/plating/rust, /area/ruin/space/has_grav/dangerous_research/medical) -"kP" = ( -/obj/structure/closet/l3closet/scientist, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/ruin/space/has_grav/dangerous_research/medical) "kV" = ( /obj/effect/decal/cleanable/blood/tracks{ dir = 4 @@ -832,10 +806,10 @@ /obj/effect/turf_decal/trimline/purple/line, /turf/open/floor/iron/white, /area/ruin/space/has_grav/dangerous_research/medical) -"lp" = ( +"lo" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/purple/diagonal_edge, -/turf/open/floor/iron/diagonal, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, /area/ruin/space/has_grav/dangerous_research) "lq" = ( /obj/structure/chair/sofa/bench/right{ @@ -844,26 +818,45 @@ /obj/effect/turf_decal/tile/neutral/diagonal_edge, /turf/open/floor/iron/dark/diagonal, /area/ruin/space/has_grav/dangerous_research) -"lX" = ( -/obj/effect/decal/cleanable/blood/tracks{ +"lt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bookcase/random, +/turf/open/floor/wood/parquet, +/area/ruin/space/has_grav/dangerous_research/dorms) +"lu" = ( +/obj/structure/bed, +/obj/effect/decal/cleanable/dirt, +/obj/item/bedsheet/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ dir = 4 }, -/obj/effect/decal/cleanable/blood/footprints{ +/turf/open/floor/iron/dark/corner{ dir = 8 }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/purple/line, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/white, -/area/ruin/space/has_grav/dangerous_research/medical) +/area/ruin/space/has_grav/dangerous_research/dorms) "lY" = ( /obj/effect/decal/cleanable/blood/tracks{ dir = 5 }, /turf/open/floor/plating/rust, /area/ruin/space/has_grav/dangerous_research/medical) +"md" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/wood, +/obj/item/folder/syndicate/red, +/obj/item/paper/fluff/ruins/dangerous_research/head_occultist_note, +/obj/item/stamp/syndicate{ + pixel_x = -6 + }, +/obj/machinery/button/door/directional/east{ + id = "asrc_supply"; + name = "Supply Closet Access"; + req_access = list("away_command") + }, +/turf/open/floor/wood/parquet, +/area/ruin/space/has_grav/dangerous_research/dorms) "mg" = ( /obj/effect/turf_decal/trimline/purple/line, /obj/machinery/chem_mass_spec, @@ -888,12 +881,20 @@ /obj/effect/mapping_helpers/burnt_floor, /turf/open/floor/iron/dark, /area/ruin/space/has_grav/dangerous_research/lab) -"mu" = ( +"mt" = ( +/obj/structure/rack, +/obj/item/storage/box/swab, +/obj/item/storage/medkit/regular{ + empty = 1; + name = "First-Aid (empty)" + }, /obj/effect/decal/cleanable/dirt, -/obj/structure/bookcase/random, -/turf/open/floor/wood/parquet, -/area/ruin/space/has_grav/dangerous_research/dorms) -"mG" = ( +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 4 + }, +/turf/open/floor/iron, +/area/ruin/space/has_grav/dangerous_research/maint) +"mG" = ( /obj/structure/table, /obj/item/organ/internal/heart, /obj/effect/decal/cleanable/blood/bubblegum, @@ -901,13 +902,16 @@ /obj/effect/turf_decal/tile/blue/fourcorners, /turf/open/floor/iron/white, /area/ruin/space/has_grav/dangerous_research/medical) -"mK" = ( +"mL" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/gibs/core, -/obj/effect/decal/cleanable/blood/bubblegum, /obj/effect/turf_decal/tile/neutral/opposingcorners, /turf/open/floor/iron/dark, -/area/ruin/space/has_grav/dangerous_research/lab) +/area/ruin/space/has_grav/dangerous_research/dorms) +"mU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral/diagonal_edge, +/turf/open/floor/iron/dark/diagonal, +/area/ruin/space/has_grav/dangerous_research/dorms) "mV" = ( /obj/effect/decal/cleanable/blood/footprints{ dir = 1 @@ -925,6 +929,12 @@ }, /turf/open/floor/iron/dark/diagonal, /area/ruin/space/has_grav/dangerous_research) +"ne" = ( +/obj/effect/turf_decal/tile/neutral/diagonal_edge, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/iron/dark/diagonal, +/area/ruin/space/has_grav/dangerous_research/dorms) "nl" = ( /obj/structure/table, /obj/structure/window/reinforced/spawner/directional/east, @@ -932,11 +942,6 @@ /obj/effect/turf_decal/tile/neutral/half, /turf/open/floor/iron/dark, /area/ruin/space/has_grav/dangerous_research/lab) -"nm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/iron/white, -/area/ruin/space/has_grav/dangerous_research/lab) "nv" = ( /obj/structure/chair/comfy{ dir = 8 @@ -962,12 +967,22 @@ "nB" = ( /turf/closed/mineral/random, /area/ruin/space/has_grav/dangerous_research/medical) -"nF" = ( +"nN" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sign/warning/electric_shock/directional/east, +/obj/effect/turf_decal/tile/purple/opposingcorners, /turf/open/floor/iron/white, -/area/ruin/space/has_grav/dangerous_research) +/area/ruin/space/has_grav/dangerous_research/medical) +"nQ" = ( +/obj/structure/table, +/obj/item/stack/sheet/cardboard, +/obj/item/food/pizzaslice/moldy/bacteria, +/obj/effect/turf_decal/tile/neutral/diagonal_edge, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/diagonal, +/area/ruin/space/has_grav/dangerous_research/dorms) "nS" = ( /obj/effect/turf_decal/tile/neutral/diagonal_edge, /obj/structure/sign/clock/directional/east, @@ -982,6 +997,16 @@ /obj/item/trash/ready_donk, /turf/open/floor/iron/white/small, /area/ruin/space/has_grav/dangerous_research/dorms) +"nX" = ( +/obj/effect/turf_decal/trimline/purple/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/ruin/space/has_grav/dangerous_research/medical) "nY" = ( /obj/structure/toilet{ dir = 8 @@ -1032,18 +1057,6 @@ /obj/effect/turf_decal/tile/neutral/opposingcorners, /turf/open/floor/iron/dark, /area/ruin/space/has_grav/dangerous_research/dorms) -"ou" = ( -/obj/effect/turf_decal/stripes/asteroid{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/gibs/torso, -/obj/effect/decal/cleanable/blood/footprints, -/obj/effect/decal/cleanable/blood/footprints{ - dir = 1 - }, -/obj/structure/window/reinforced/spawner/directional/south, -/turf/open/floor/iron/dark, -/area/ruin/space/has_grav/dangerous_research/lab) "ox" = ( /obj/machinery/door/airlock/vault{ name = "ASRC Electrical" @@ -1052,23 +1065,16 @@ /obj/effect/mapping_helpers/airlock/access/all/away/science, /turf/open/floor/iron/white, /area/ruin/space/has_grav/dangerous_research/maint) -"oF" = ( +"oA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/yellow/half/contrasted{ dir = 8 }, /turf/open/floor/iron, /area/ruin/space/has_grav/dangerous_research/maint) -"oH" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/footprints, -/obj/item/organ/internal/lungs, -/obj/structure/window/reinforced/spawner/directional/south, -/obj/structure/window/reinforced/spawner/directional/east, -/turf/open/floor/iron/dark, -/area/ruin/space/has_grav/dangerous_research/lab) "oJ" = ( /obj/structure/closet/crate/medical, /obj/item/stack/medical/suture/emergency, @@ -1080,6 +1086,21 @@ }, /turf/open/floor/iron/dark, /area/ruin/space/has_grav/dangerous_research) +"oT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/wood, +/obj/item/reagent_containers/cup/glass/bottle/vodka/badminka{ + pixel_x = 8; + pixel_y = 16 + }, +/obj/item/reagent_containers/cup/glass/drinkingglass/shotglass{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/contraband/andromeda_bitters/directional/east, +/turf/open/floor/wood/parquet, +/area/ruin/space/has_grav/dangerous_research/dorms) "oW" = ( /obj/effect/turf_decal/stripes/asteroid{ dir = 8 @@ -1087,13 +1108,10 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white, /area/ruin/space/has_grav/dangerous_research/lab) -"pa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/diagonal_edge, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/dark/diagonal, +"oX" = ( +/obj/structure/sign/poster/official/moth_piping/directional/north, +/obj/effect/turf_decal/tile/neutral/opposingcorners, +/turf/open/floor/iron/dark, /area/ruin/space/has_grav/dangerous_research/dorms) "pb" = ( /obj/item/chair, @@ -1103,47 +1121,20 @@ }, /turf/open/floor/iron/white, /area/ruin/space/has_grav/dangerous_research/lab) -"pi" = ( -/obj/structure/sign/poster/contraband/busty_backdoor_xeno_babes_6/directional/west, -/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark/corner{ - dir = 4 - }, -/area/ruin/space/has_grav/dangerous_research/dorms) "pk" = ( /turf/closed/wall, /area/ruin/space/has_grav/dangerous_research) -"pu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/structure/tank_holder/extinguisher/advanced, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/ruin/space/has_grav/dangerous_research/maint) -"pC" = ( -/obj/structure/bed{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/bedsheet/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark/corner{ - dir = 4 - }, -/area/ruin/space/has_grav/dangerous_research/dorms) "pF" = ( /obj/effect/spawner/structure/window/reinforced, /obj/effect/decal/cleanable/blood/splatter/over_window, /turf/open/floor/plating, /area/ruin/space/has_grav/dangerous_research/medical) +"pG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/misc/asteroid, +/area/ruin/space/has_grav/dangerous_research/medical) "pH" = ( /turf/open/misc/asteroid/airless{ icon_state = "asteroid6" @@ -1161,12 +1152,6 @@ /obj/effect/turf_decal/tile/neutral/opposingcorners, /turf/open/floor/iron/dark, /area/ruin/space/has_grav/dangerous_research/lab) -"pP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/burnt_floor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/ruin/space/has_grav/dangerous_research/medical) "pQ" = ( /obj/effect/decal/cleanable/blood/bubblegum, /turf/open/floor/iron/white, @@ -1180,14 +1165,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/ruin/space/has_grav/dangerous_research/medical) -"qc" = ( +"pY" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/command{ - name = "Head Occultist Bedroom" - }, -/obj/effect/mapping_helpers/airlock/access/all/away/command, -/turf/open/floor/wood/parquet, -/area/ruin/space/has_grav/dangerous_research/dorms) +/obj/structure/sign/warning/no_smoking/directional/north, +/obj/effect/turf_decal/tile/neutral/half, +/turf/open/floor/iron/dark, +/area/ruin/space/has_grav/dangerous_research/lab) "qg" = ( /obj/effect/decal/cleanable/blood/gibs/core, /obj/effect/decal/cleanable/blood/footprints{ @@ -1201,25 +1184,6 @@ }, /turf/open/floor/iron/dark, /area/ruin/space/has_grav/dangerous_research/lab) -"ql" = ( -/obj/item/trash/cheesie, -/obj/structure/sign/poster/ripped/directional/south, -/obj/effect/mapping_helpers/broken_floor, -/obj/effect/turf_decal/tile/neutral/half{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/ruin/space/has_grav/dangerous_research/lab) -"qp" = ( -/obj/structure/window/reinforced/spawner/directional/east, -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/clock/directional/south, -/obj/effect/turf_decal/tile/neutral/half{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/ruin/space/has_grav/dangerous_research/lab) "qq" = ( /obj/effect/decal/cleanable/blood/gibs/torso, /obj/effect/decal/cleanable/blood/footprints, @@ -1242,12 +1206,6 @@ /obj/effect/mapping_helpers/burnt_floor, /turf/open/floor/iron/white, /area/ruin/space/has_grav/dangerous_research/medical) -"qv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/no_smoking/directional/north, -/obj/effect/turf_decal/tile/neutral/half, -/turf/open/floor/iron/dark, -/area/ruin/space/has_grav/dangerous_research/lab) "qB" = ( /obj/structure/closet/crate/bin, /obj/item/broken_bottle, @@ -1275,15 +1233,6 @@ /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/iron/white, /area/ruin/space/has_grav/dangerous_research/lab) -"ra" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/oil, -/obj/machinery/light/dim/directional/east, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/ruin/space/has_grav/dangerous_research/maint) "rb" = ( /obj/effect/decal/cleanable/blood/footprints{ dir = 4 @@ -1314,15 +1263,6 @@ }, /turf/open/floor/iron/dark, /area/ruin/space/has_grav/dangerous_research/lab) -"rd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/official/safety_report/directional/south, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/half{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/ruin/space/has_grav/dangerous_research/lab) "re" = ( /mob/living/basic/heretic_summon/raw_prophet/ruins, /turf/open/floor/plating/rust, @@ -1336,27 +1276,17 @@ }, /turf/open/floor/iron/dark, /area/ruin/space/has_grav/dangerous_research) -"rl" = ( +"rj" = ( +/obj/machinery/light/broken/directional/north, /obj/effect/decal/cleanable/dirt, -/obj/structure/closet{ - anchored = 1; - name = "HO Locker" +/obj/item/chair{ + dir = 1 }, -/obj/effect/spawner/random/aimodule/harmful, -/obj/item/clothing/suit/toggle/labcoat/interdyne, -/obj/item/gps/spaceruin, -/obj/item/clothing/under/rank/rnd/research_director/turtleneck, -/obj/item/clothing/under/rank/rnd/research_director/turtleneck/skirt, -/turf/open/floor/wood/parquet, -/area/ruin/space/has_grav/dangerous_research/dorms) -"rm" = ( -/obj/effect/turf_decal/siding/purple, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/purple/half/contrasted{ +/obj/effect/turf_decal/tile/purple{ dir = 1 }, /turf/open/floor/iron/white, -/area/ruin/space/has_grav/dangerous_research) +/area/ruin/space/has_grav/dangerous_research/lab) "rq" = ( /obj/effect/turf_decal/siding/dark{ dir = 4 @@ -1373,13 +1303,6 @@ }, /turf/open/floor/engine/air, /area/ruin/space/has_grav/dangerous_research/maint) -"rF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/ruin/space/has_grav/dangerous_research/lab) "rO" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -1422,12 +1345,11 @@ /obj/effect/decal/cleanable/blood/footprints, /turf/open/floor/iron/dark, /area/ruin/space/has_grav/dangerous_research/lab) -"sv" = ( -/obj/structure/chair/office, +"so" = ( +/obj/effect/turf_decal/tile/neutral/diagonal_edge, /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/dark_red/opposingcorners, -/turf/open/floor/iron/dark, -/area/ruin/space/has_grav/dangerous_research) +/turf/open/floor/iron/dark/diagonal, +/area/ruin/space/has_grav/dangerous_research/dorms) "sG" = ( /obj/structure/chair/comfy{ dir = 4 @@ -1435,6 +1357,23 @@ /obj/effect/turf_decal/tile/neutral/opposingcorners, /turf/open/floor/iron/dark, /area/ruin/space/has_grav/dangerous_research/lab) +"sM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/ruin/space/has_grav/dangerous_research/maint) +"sY" = ( +/obj/structure/sign/poster/official/random/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/dark_red/anticorner{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/ruin/space/has_grav/dangerous_research) "tb" = ( /obj/effect/turf_decal/stripes/asteroid{ dir = 1 @@ -1461,6 +1400,14 @@ /obj/effect/turf_decal/tile/purple, /turf/open/floor/iron/white, /area/ruin/space/has_grav/dangerous_research/medical) +"tj" = ( +/obj/structure/filingcabinet, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/effect/decal/cleanable/dirt, +/obj/item/paper/fluff/ruins/dangerous_research/manifest, +/obj/effect/turf_decal/tile/dark_red/half, +/turf/open/floor/iron/dark, +/area/ruin/space/has_grav/dangerous_research) "tk" = ( /obj/effect/turf_decal/tile/neutral/diagonal_edge, /obj/machinery/door/airlock{ @@ -1468,14 +1415,6 @@ }, /turf/open/floor/iron/dark/diagonal, /area/ruin/space/has_grav/dangerous_research/dorms) -"tm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/fluff/paper/stack{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/iron/white, -/area/ruin/space/has_grav/dangerous_research/lab) "tp" = ( /obj/item/shard, /turf/open/floor/iron/white, @@ -1494,41 +1433,13 @@ "ts" = ( /turf/closed/wall, /area/ruin/space/has_grav/dangerous_research/dorms) -"tu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/ruin/space/has_grav/dangerous_research/maint) -"tv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/purple/diagonal_edge, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/diagonal, -/area/ruin/space/has_grav/dangerous_research) -"tz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/official/work_for_a_future/directional/north, -/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark/corner, -/area/ruin/space/has_grav/dangerous_research/dorms) -"tD" = ( -/obj/machinery/door/airlock{ - name = "Dorms - Doctor Greyham" +"tD" = ( +/obj/machinery/door/airlock{ + name = "Dorms - Doctor Greyham" }, /obj/effect/turf_decal/tile/neutral/diagonal_edge, /turf/open/floor/iron/dark/diagonal, /area/ruin/space/has_grav/dangerous_research/dorms) -"tE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/siding/dark, -/obj/effect/turf_decal/tile/purple/half/contrasted, -/turf/open/floor/iron/white, -/area/ruin/space/has_grav/dangerous_research) "tF" = ( /obj/effect/turf_decal/stripes/corner, /obj/effect/decal/cleanable/blood/gibs, @@ -1600,21 +1511,46 @@ }, /turf/open/floor/iron/dark/diagonal, /area/ruin/space/has_grav/dangerous_research) -"uc" = ( -/obj/effect/turf_decal/trimline/purple/line{ +"uf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed{ + dir = 4 + }, +/obj/item/bedsheet/purple{ dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/white, -/area/ruin/space/has_grav/dangerous_research/medical) -"um" = ( -/obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark/corner, +/area/ruin/space/has_grav/dangerous_research/dorms) +"uh" = ( +/obj/structure/bed{ dir = 4 }, -/turf/open/floor/iron/dark/corner{ +/obj/effect/decal/cleanable/dirt, +/obj/item/bedsheet/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ dir = 8 }, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/ruin/space/has_grav/dangerous_research/dorms) +"ul" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet{ + anchored = 1; + name = "HO Locker" + }, +/obj/effect/spawner/random/aimodule/harmful, +/obj/item/clothing/suit/toggle/labcoat/interdyne, +/obj/item/gps/spaceruin, +/obj/item/clothing/under/rank/rnd/research_director/turtleneck, +/obj/item/clothing/under/rank/rnd/research_director/turtleneck/skirt, +/turf/open/floor/wood/parquet, /area/ruin/space/has_grav/dangerous_research/dorms) "un" = ( /obj/machinery/light/broken/directional/south, @@ -1623,39 +1559,21 @@ "us" = ( /turf/closed/wall, /area/ruin/space) -"uB" = ( -/obj/structure/fluff/paper/stack{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/purple/anticorner/contrasted, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/ruin/space/has_grav/dangerous_research/dorms) -"uG" = ( -/obj/structure/rack, -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/toolbox/mechanical, -/obj/item/ammo_box/c38, -/obj/item/ammo_box/c38, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/ruin/space/has_grav/dangerous_research/maint) "uI" = ( /obj/structure/lattice/catwalk, /obj/structure/marker_beacon/purple, /turf/open/space/basic, /area/ruin/space) -"uP" = ( -/obj/effect/turf_decal/trimline/purple/line{ +"uO" = ( +/obj/effect/turf_decal/stripes/asteroid, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/white, +/area/ruin/space/has_grav/dangerous_research/lab) +"uQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/purple{ dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/tank_holder/anesthetic, -/obj/machinery/airalarm/directional/south, /turf/open/floor/iron/white, /area/ruin/space/has_grav/dangerous_research/medical) "uR" = ( @@ -1669,6 +1587,22 @@ }, /turf/open/floor/iron/white, /area/ruin/space/has_grav/dangerous_research) +"uZ" = ( +/obj/structure/chair/office, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/dark_red/opposingcorners, +/turf/open/floor/iron/dark, +/area/ruin/space/has_grav/dangerous_research) +"ve" = ( +/obj/effect/turf_decal/stripes/asteroid{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/footprints, +/obj/effect/decal/cleanable/blood/footprints, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/ruin/space/has_grav/dangerous_research/lab) "vg" = ( /obj/effect/decal/cleanable/blood/tracks, /obj/effect/decal/cleanable/blood/footprints{ @@ -1679,6 +1613,15 @@ }, /turf/open/floor/iron/white, /area/ruin/space/has_grav/dangerous_research/medical) +"vu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/office{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral/opposingcorners, +/turf/open/floor/iron/dark, +/area/ruin/space/has_grav/dangerous_research/dorms) "vv" = ( /obj/effect/spawner/structure/window/reinforced/damaged, /turf/open/floor/plating, @@ -1695,25 +1638,17 @@ /obj/item/stack/cable_coil, /turf/open/floor/plating/rust, /area/ruin/space/has_grav/dangerous_research/lab) +"vQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/ruin/space/has_grav/dangerous_research/maint) "wf" = ( /obj/structure/cable, /turf/open/floor/plating, /area/ruin/space/has_grav/dangerous_research/maint) -"wh" = ( -/obj/structure/table, -/obj/item/flashlight/lamp{ - pixel_x = -6; - pixel_y = 13 - }, -/obj/item/paper/fluff/ruins/dangerous_research/beaches_journal_1, -/obj/structure/sign/poster/contraband/tea_over_tizira/directional/east, -/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark/corner{ - dir = 8 - }, -/area/ruin/space/has_grav/dangerous_research/dorms) "wi" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -1773,23 +1708,14 @@ /obj/structure/table, /turf/open/floor/iron/dark/diagonal, /area/ruin/space/has_grav/dangerous_research) -"wV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/ruin/space/has_grav/dangerous_research/medical) -"xb" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +"wX" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 }, -/turf/open/floor/iron, -/area/ruin/space/has_grav/dangerous_research/maint) +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/iron/white, +/area/ruin/space/has_grav/dangerous_research/lab) "xd" = ( /turf/open/floor/plating/rust, /area/ruin/space/has_grav/dangerous_research/medical) @@ -1812,6 +1738,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/ruin/space/has_grav/dangerous_research/lab) +"xv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral/diagonal_edge, +/obj/structure/cable, +/turf/open/floor/iron/dark/diagonal, +/area/ruin/space/has_grav/dangerous_research/dorms) "xB" = ( /obj/structure/barricade/wooden, /obj/structure/extinguisher_cabinet/directional/north, @@ -1825,11 +1757,6 @@ }, /turf/open/floor/iron/white, /area/ruin/space/has_grav/dangerous_research/lab) -"xJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/ruin/space/has_grav/dangerous_research) "xK" = ( /turf/open/misc/asteroid{ icon_state = "asteroid6" @@ -1839,17 +1766,20 @@ /obj/effect/turf_decal/tile/neutral/diagonal_edge, /turf/open/floor/iron/dark/diagonal, /area/ruin/space/has_grav/dangerous_research) +"xR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/wallframe/camera, +/obj/effect/decal/cleanable/robot_debris, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/ruin/space/has_grav/dangerous_research/lab) "xS" = ( /obj/effect/turf_decal/tile/neutral/diagonal_edge, /obj/machinery/light/broken/directional/east, /turf/open/floor/iron/dark/diagonal, /area/ruin/space/has_grav/dangerous_research) -"xW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2, -/turf/open/floor/iron, -/area/ruin/space/has_grav/dangerous_research/maint) "xZ" = ( /obj/structure/sign/poster/official/random/directional/east, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -1858,6 +1788,27 @@ /obj/effect/turf_decal/tile/neutral/opposingcorners, /turf/open/floor/iron/dark, /area/ruin/space/has_grav/dangerous_research/dorms) +"yc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/structure/tank_holder/extinguisher/advanced, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/ruin/space/has_grav/dangerous_research/maint) +"yg" = ( +/obj/effect/turf_decal/tile/neutral/diagonal_edge, +/obj/item/food/donkpocket/spicy, +/obj/item/food/ready_donk, +/obj/item/food/ready_donk/mac_n_cheese, +/obj/structure/sign/poster/contraband/donk_co/directional/west, +/obj/machinery/light/dim/directional/west, +/obj/structure/closet/secure_closet/freezer/empty{ + name = "fridge" + }, +/turf/open/floor/iron/dark/diagonal, +/area/ruin/space/has_grav/dangerous_research) "yl" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 @@ -1865,16 +1816,17 @@ /obj/effect/turf_decal/tile/dark_red/opposingcorners, /turf/open/floor/iron/dark, /area/ruin/space/has_grav/dangerous_research) -"yr" = ( -/obj/effect/turf_decal/siding/purple{ - dir = 10 - }, +"yA" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/ruin/space/has_grav/dangerous_research) +/obj/machinery/light/small/red/directional/north, +/turf/open/floor/iron, +/area/ruin/space/has_grav/dangerous_research/maint) +"yL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral/diagonal_edge, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/dark/diagonal, +/area/ruin/space/has_grav/dangerous_research/dorms) "yO" = ( /obj/effect/decal/cleanable/blood/bubblegum, /turf/open/floor/plating/rust, @@ -1900,15 +1852,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/ruin/space/has_grav/dangerous_research) -"yZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/directional/north, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/ruin/space/has_grav/dangerous_research) "zb" = ( /obj/effect/spawner/random/vending/colavend, /obj/effect/turf_decal/siding/dark/corner{ @@ -1947,11 +1890,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/ruin/space/has_grav/dangerous_research) -"zg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/ruin/space/has_grav/dangerous_research/maint) "zi" = ( /turf/open/misc/asteroid{ icon_state = "asteroid8" @@ -1972,6 +1910,16 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/ruin/space/has_grav/dangerous_research/medical) +"zF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/ruin/space/has_grav/dangerous_research/lab) "zM" = ( /obj/structure/table, /obj/machinery/computer/security/telescreen/entertainment/directional/south, @@ -2008,6 +1956,20 @@ icon_state = "asteroid12" }, /area/ruin/space) +"zT" = ( +/obj/structure/closet/crate, +/obj/item/reagent_containers/cup/glass/waterbottle/large, +/obj/item/reagent_containers/cup/glass/waterbottle/large, +/obj/item/reagent_containers/cup/glass/waterbottle/large, +/obj/item/food/canned/beans, +/obj/item/food/canned/beans, +/obj/item/food/canned/beans, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/ruin/space/has_grav/dangerous_research/maint) "zY" = ( /obj/structure/lattice/catwalk, /turf/open/space/basic, @@ -2034,23 +1996,10 @@ /obj/effect/turf_decal/tile/blue/fourcorners, /turf/open/floor/iron/white, /area/ruin/space/has_grav/dangerous_research/medical) -"Ag" = ( -/obj/structure/rack, -/obj/effect/decal/cleanable/dirt, -/obj/item/soap, -/obj/item/reagent_containers/spray/cleaner, -/turf/open/floor/iron, -/area/ruin/space/has_grav/dangerous_research/maint) -"An" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/turf_decal/tile/neutral/opposingcorners, -/turf/open/floor/iron/dark, -/area/ruin/space/has_grav/dangerous_research/lab) -"Aq" = ( -/obj/machinery/atmospherics/components/binary/valve/on/layer4{ +"Ah" = ( +/obj/machinery/atmospherics/components/binary/valve/layer4{ dir = 4; - name = "Air Tank A Valve" + name = "Air Tank B Valve" }, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/yellow/half/contrasted{ @@ -2070,40 +2019,43 @@ }, /turf/open/floor/iron/white, /area/ruin/space/has_grav/dangerous_research) -"AH" = ( -/obj/structure/table, -/obj/item/folder/white, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/iron/white, -/area/ruin/space/has_grav/dangerous_research/lab) -"AK" = ( -/obj/effect/decal/cleanable/blood/tracks{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/footprints{ - dir = 8 - }, -/turf/open/floor/plating/rust, -/area/ruin/space/has_grav/dangerous_research/lab) -"AO" = ( -/obj/structure/table, -/obj/item/stack/sheet/cardboard, -/obj/item/food/pizzaslice/moldy/bacteria, -/obj/effect/turf_decal/tile/neutral/diagonal_edge, +"Ax" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark/diagonal, -/area/ruin/space/has_grav/dangerous_research/dorms) -"AQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/ruin/space/has_grav/dangerous_research/maint) +"Ay" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ +/obj/structure/sign/warning/directional/north, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/ruin/space/has_grav/dangerous_research) +"AE" = ( +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/computer/security/telescreen/entertainment/directional/south, +/turf/open/floor/iron/white, +/area/ruin/space/has_grav/dangerous_research/medical) +"AH" = ( +/obj/structure/table, +/obj/item/folder/white, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/iron/white, +/area/ruin/space/has_grav/dangerous_research/lab) +"AK" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/footprints{ dir = 8 }, -/turf/open/floor/iron, -/area/ruin/space/has_grav/dangerous_research/maint) +/turf/open/floor/plating/rust, +/area/ruin/space/has_grav/dangerous_research/lab) "AT" = ( /obj/structure/closet/crate/trashcart/laundry, /obj/effect/turf_decal/siding/dark{ @@ -2117,12 +2069,6 @@ /obj/structure/closet/secure_closet/freezer/empty/open, /turf/open/floor/iron/dark/diagonal, /area/ruin/space/has_grav/dangerous_research) -"Ba" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/ruin/space/has_grav/dangerous_research/medical) "Bc" = ( /obj/effect/decal/cleanable/blood/footprints, /obj/effect/decal/cleanable/blood/footprints{ @@ -2134,6 +2080,19 @@ "Bg" = ( /turf/closed/mineral/random, /area/ruin/space) +"Bi" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/ruin/space/has_grav/dangerous_research) +"Bj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/medical/emergency, +/turf/open/floor/iron/white, +/area/ruin/space/has_grav/dangerous_research/lab) "Bm" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -2154,15 +2113,22 @@ }, /turf/open/floor/iron/white, /area/ruin/space/has_grav/dangerous_research/lab) -"By" = ( +"Bv" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 8 +/obj/structure/sign/clock/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 }, -/turf/open/floor/iron, -/area/ruin/space/has_grav/dangerous_research/maint) +/obj/effect/turf_decal/tile/neutral/opposingcorners, +/turf/open/floor/iron/dark, +/area/ruin/space/has_grav/dangerous_research/dorms) +"Bx" = ( +/obj/structure/sink/directional/south, +/obj/structure/mirror/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/south, +/turf/open/floor/iron/showroomfloor, +/area/ruin/space/has_grav/dangerous_research/dorms) "BE" = ( /obj/effect/turf_decal/stripes/asteroid, /obj/effect/decal/cleanable/blood/gibs/up, @@ -2170,18 +2136,6 @@ /obj/structure/window/reinforced/spawner/directional/north, /turf/open/floor/iron/dark, /area/ruin/space/has_grav/dangerous_research/lab) -"BG" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/mineral/plasma/thirty, -/obj/item/stack/sheet/mineral/wood/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/plasteel{ - amount = 30 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/ruin/space/has_grav/dangerous_research/maint) "BJ" = ( /obj/item/kirbyplants/random, /obj/effect/turf_decal/siding/dark{ @@ -2202,21 +2156,19 @@ }, /turf/open/floor/iron/dark, /area/ruin/space/has_grav/dangerous_research/lab) +"BQ" = ( +/obj/effect/turf_decal/trimline/purple/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/white, +/area/ruin/space/has_grav/dangerous_research/medical) "BY" = ( /obj/structure/window/reinforced/spawner/directional/west, /obj/effect/decal/cleanable/dirt, /obj/machinery/iv_drip, /turf/open/floor/iron/white, /area/ruin/space/has_grav/dangerous_research/lab) -"Cd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/clock/directional/west, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/opposingcorners, -/turf/open/floor/iron/dark, -/area/ruin/space/has_grav/dangerous_research/dorms) "Cf" = ( /obj/effect/turf_decal/tile/purple/diagonal_edge, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -2236,23 +2188,22 @@ /obj/effect/turf_decal/stripes/corner, /turf/open/floor/iron/diagonal, /area/ruin/space/has_grav/dangerous_research) -"Cs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark/corner{ - dir = 4 +"CI" = ( +/turf/open/misc/asteroid/airless{ + icon_state = "asteroid2" }, -/area/ruin/space/has_grav/dangerous_research/dorms) -"CA" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral/diagonal_edge, +/area/ruin/space) +"CJ" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/dark/diagonal, -/area/ruin/space/has_grav/dangerous_research/dorms) -"CB" = ( +/obj/item/clothing/suit/toggle/labcoat, +/obj/effect/mapping_helpers/atom_injector/element_injector{ + element_type = /datum/element/decal/blood; + target_type = /obj/item/clothing + }, +/obj/effect/turf_decal/tile/blue/fourcorners, +/turf/open/floor/iron/white, +/area/ruin/space/has_grav/dangerous_research/medical) +"CK" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/computer/atmos_control/noreconnect{ atmos_chambers = list("asrc_b"="Air Supply B"); @@ -2261,32 +2212,6 @@ /obj/effect/turf_decal/tile/yellow/anticorner/contrasted, /turf/open/floor/iron, /area/ruin/space/has_grav/dangerous_research/maint) -"CD" = ( -/obj/effect/turf_decal/stripes/asteroid{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/ruin/space/has_grav/dangerous_research/lab) -"CG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/asteroid{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/asteroid{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/ruin/space/has_grav/dangerous_research) -"CI" = ( -/turf/open/misc/asteroid/airless{ - icon_state = "asteroid2" - }, -/area/ruin/space) "CL" = ( /obj/effect/turf_decal/stripes/asteroid{ dir = 4 @@ -2303,22 +2228,6 @@ /obj/effect/spawner/structure/window/reinforced/plasma, /turf/open/floor/plating, /area/ruin/space/has_grav/dangerous_research/maint) -"CS" = ( -/obj/effect/turf_decal/stripes/asteroid{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/footprints{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/footprints{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/ruin/space/has_grav/dangerous_research/lab) "CU" = ( /obj/effect/decal/cleanable/blood/tracks, /obj/effect/decal/cleanable/blood/footprints{ @@ -2329,14 +2238,6 @@ }, /turf/open/floor/iron/white, /area/ruin/space/has_grav/dangerous_research/medical) -"Dg" = ( -/obj/effect/turf_decal/stripes/end{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/ruin/space/has_grav/dangerous_research) "Dk" = ( /obj/structure/sign/poster/official/random/directional/north, /obj/effect/turf_decal/tile/purple/half/contrasted{ @@ -2363,17 +2264,6 @@ "DA" = ( /turf/closed/wall/r_wall, /area/ruin/space/has_grav/dangerous_research) -"DB" = ( -/obj/effect/turf_decal/stripes/asteroid{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/footprints, -/obj/effect/decal/cleanable/blood/footprints{ - dir = 4 - }, -/obj/structure/window/reinforced/spawner/directional/south, -/turf/open/floor/iron/dark, -/area/ruin/space/has_grav/dangerous_research/lab) "DL" = ( /obj/structure/lattice/catwalk, /obj/machinery/atmospherics/components/unary/passive_vent{ @@ -2381,10 +2271,11 @@ }, /turf/open/misc/asteroid/airless, /area/ruin/space) -"DX" = ( -/obj/structure/sign/poster/official/moth_piping/directional/north, -/obj/effect/turf_decal/tile/neutral/opposingcorners, -/turf/open/floor/iron/dark, +"DS" = ( +/obj/effect/turf_decal/tile/neutral/diagonal_edge, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/diagonal, /area/ruin/space/has_grav/dangerous_research/dorms) "DY" = ( /obj/structure/table, @@ -2406,6 +2297,15 @@ /obj/structure/lattice, /turf/open/misc/asteroid/airless, /area/ruin/space) +"Es" = ( +/obj/effect/decal/cleanable/blood/tracks, +/obj/effect/decal/cleanable/blood/footprints{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/ruin/space/has_grav/dangerous_research/medical) "Ey" = ( /obj/structure/lattice, /turf/open/space/basic, @@ -2441,6 +2341,17 @@ }, /turf/open/floor/wood/parquet, /area/ruin/space/has_grav/dangerous_research/dorms) +"EY" = ( +/obj/structure/rack, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/toolbox/mechanical, +/obj/item/ammo_box/c38, +/obj/item/ammo_box/c38, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/ruin/space/has_grav/dangerous_research/maint) "Fa" = ( /obj/structure/chair/comfy/black{ dir = 4 @@ -2472,24 +2383,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/ruin/space/has_grav/dangerous_research/lab) -"FA" = ( -/obj/effect/turf_decal/stripes/end{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/sheet/mineral/wood, -/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/ruin/space/has_grav/dangerous_research/medical) -"FG" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/fancy/candle_box, -/obj/effect/turf_decal/tile/purple/opposingcorners, -/turf/open/floor/iron/white, -/area/ruin/space/has_grav/dangerous_research/lab) "FJ" = ( /obj/effect/turf_decal/siding/purple, /obj/effect/turf_decal/tile/purple/half/contrasted{ @@ -2512,20 +2405,6 @@ /obj/item/stack/cable_coil, /turf/open/floor/iron/white, /area/ruin/space/has_grav/dangerous_research/lab) -"Gd" = ( -/obj/machinery/door/airlock/science{ - name = "Supply Closet" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/access/all/away/science, -/obj/machinery/door/poddoor/shutters{ - id = "asrc_supply"; - name = "Supply Closet Shutters" - }, -/turf/open/floor/iron, -/area/ruin/space/has_grav/dangerous_research/maint) "Gg" = ( /obj/structure/barricade/wooden/crude, /obj/machinery/door/airlock/vault{ @@ -2544,16 +2423,6 @@ /obj/effect/turf_decal/tile/purple/half/contrasted, /turf/open/floor/iron/white, /area/ruin/space/has_grav/dangerous_research) -"Gm" = ( -/obj/machinery/light/broken/directional/east, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/yes_smoking/circle/directional/east, -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple/diagonal_edge, -/turf/open/floor/iron/diagonal, -/area/ruin/space/has_grav/dangerous_research) "Gn" = ( /obj/structure/table/glass, /obj/item/folder/white, @@ -2585,6 +2454,13 @@ }, /turf/open/floor/iron/dark, /area/ruin/space/has_grav/dangerous_research) +"Gx" = ( +/obj/machinery/door/window/left/directional/west{ + name = "Subject Pen" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/white, +/area/ruin/space/has_grav/dangerous_research/lab) "Gz" = ( /obj/structure/barricade/wooden/crude, /obj/effect/decal/cleanable/blood/tracks, @@ -2592,9 +2468,30 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/ruin/space/has_grav/dangerous_research) -"GZ" = ( -/turf/open/misc/asteroid, -/area/ruin/space/has_grav/dangerous_research/medical) +"GH" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/footprints{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/line, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/white, +/area/ruin/space/has_grav/dangerous_research/medical) +"GW" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/fancy/candle_box, +/obj/effect/turf_decal/tile/purple/opposingcorners, +/turf/open/floor/iron/white, +/area/ruin/space/has_grav/dangerous_research/lab) +"GZ" = ( +/turf/open/misc/asteroid, +/area/ruin/space/has_grav/dangerous_research/medical) "Hj" = ( /turf/closed/wall/rust, /area/ruin/space/has_grav/dangerous_research/medical) @@ -2623,9 +2520,15 @@ /obj/effect/turf_decal/tile/neutral/diagonal_edge, /turf/open/floor/iron/dark/diagonal, /area/ruin/space/has_grav/dangerous_research/dorms) -"HG" = ( +"HL" = ( +/obj/machinery/light/broken/directional/east, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/white, +/obj/structure/sign/warning/yes_smoking/circle/directional/east, +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple/diagonal_edge, +/turf/open/floor/iron/diagonal, /area/ruin/space/has_grav/dangerous_research) "HO" = ( /turf/open/floor/plating, @@ -2637,6 +2540,16 @@ }, /turf/open/floor/iron/dark/diagonal, /area/ruin/space/has_grav/dangerous_research/dorms) +"HR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/flag/ssc/directional/west, +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/ruin/space/has_grav/dangerous_research/dorms) "HT" = ( /obj/effect/turf_decal/siding/purple/corner{ dir = 1 @@ -2650,6 +2563,11 @@ /obj/effect/turf_decal/tile/purple/half/contrasted, /turf/open/floor/iron/white, /area/ruin/space/has_grav/dangerous_research) +"HV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/ruin/space/has_grav/dangerous_research/medical) "Ij" = ( /obj/structure/table/glass, /obj/item/pai_card, @@ -2660,16 +2578,39 @@ /obj/effect/spawner/structure/electrified_grille, /turf/open/floor/plating, /area/ruin/space/has_grav/dangerous_research/maint) -"Il" = ( +"Iq" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -1; + pixel_y = 5 + }, +/obj/item/pen, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/effect/turf_decal/tile/dark_red/anticorner{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/ruin/space/has_grav/dangerous_research) +"Iz" = ( +/obj/machinery/door/airlock/science{ + name = "Supply Closet" + }, /obj/effect/decal/cleanable/dirt, -/obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ - dir = 8 +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/access/all/away/science, +/obj/machinery/door/poddoor/shutters{ + id = "asrc_supply"; + name = "Supply Closet Shutters" }, -/turf/open/floor/iron/white, -/area/ruin/space/has_grav/dangerous_research/lab) +/turf/open/floor/iron, +/area/ruin/space/has_grav/dangerous_research/maint) +"IA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/purple/diagonal_edge, +/turf/open/floor/iron/diagonal, +/area/ruin/space/has_grav/dangerous_research) "IC" = ( /obj/effect/turf_decal/trimline/purple/line{ dir = 1 @@ -2679,6 +2620,12 @@ /obj/effect/decal/cleanable/robot_debris/up, /turf/open/floor/iron/white, /area/ruin/space/has_grav/dangerous_research/medical) +"IU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/burnt_floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/ruin/space/has_grav/dangerous_research/medical) "IZ" = ( /obj/effect/turf_decal/stripes/asteroid{ dir = 4 @@ -2692,20 +2639,33 @@ /obj/structure/window/reinforced/spawner/directional/west, /turf/open/floor/iron/dark, /area/ruin/space/has_grav/dangerous_research/lab) -"Ja" = ( -/obj/effect/turf_decal/stripes/asteroid{ +"Jd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ dir = 8 }, -/obj/effect/decal/cleanable/blood/footprints, -/obj/effect/decal/cleanable/blood/footprints, -/obj/structure/window/reinforced/spawner/directional/east, +/turf/open/floor/iron, +/area/ruin/space/has_grav/dangerous_research/maint) +"Je" = ( +/obj/effect/turf_decal/trimline/purple/line{ + dir = 1 + }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/ruin/space/has_grav/dangerous_research/lab) +/obj/structure/tank_holder/anesthetic, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/iron/white, +/area/ruin/space/has_grav/dangerous_research/medical) "Jh" = ( /obj/effect/spawner/structure/window/reinforced/damaged, /turf/open/floor/plating, /area/ruin/space/has_grav/dangerous_research/medical) +"Jk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/iron/white, +/area/ruin/space/has_grav/dangerous_research/lab) "JA" = ( /obj/effect/turf_decal/stripes/asteroid{ dir = 1 @@ -2717,11 +2677,14 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/ruin/space/has_grav/dangerous_research/medical) -"JF" = ( +"JC" = ( +/obj/effect/turf_decal/siding/purple, /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 + }, /turf/open/floor/iron/white, -/area/ruin/space/has_grav/dangerous_research/medical) +/area/ruin/space/has_grav/dangerous_research) "JI" = ( /obj/structure/cable, /obj/machinery/power/terminal, @@ -2745,6 +2708,22 @@ /obj/structure/window/reinforced/spawner/directional/east, /turf/open/floor/iron/dark, /area/ruin/space/has_grav/dangerous_research/lab) +"JU" = ( +/obj/structure/table, +/obj/machinery/light/small/directional/west, +/obj/item/book/bible{ + pixel_x = 3 + }, +/obj/item/book/manual/wiki/cytology{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/paper/fluff/ruins/dangerous_research/armstrong_memo_2, +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark/corner, +/area/ruin/space/has_grav/dangerous_research/dorms) "JW" = ( /obj/effect/turf_decal/siding/purple, /obj/structure/chair/sofa/bench/right, @@ -2753,17 +2732,40 @@ }, /turf/open/floor/iron/white, /area/ruin/space/has_grav/dangerous_research) -"Ki" = ( -/obj/effect/decal/cleanable/blood/footprints{ - dir = 8 +"JY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/oil, +/obj/machinery/light/dim/directional/east, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 }, -/obj/effect/turf_decal/trimline/blue/filled/line{ +/turf/open/floor/iron, +/area/ruin/space/has_grav/dangerous_research/maint) +"Kb" = ( +/obj/effect/turf_decal/stripes/asteroid{ dir = 1 }, -/obj/effect/turf_decal/trimline/purple/line, +/obj/effect/decal/cleanable/blood/gibs, +/obj/effect/decal/cleanable/blood/footprints, +/obj/effect/decal/cleanable/blood/footprints{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner/directional/south, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/white, -/area/ruin/space/has_grav/dangerous_research/medical) +/turf/open/floor/iron/dark, +/area/ruin/space/has_grav/dangerous_research/lab) +"Kh" = ( +/obj/item/trash/can{ + pixel_x = -8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/bubblegum, +/obj/machinery/light/very_dim/directional/west, +/obj/effect/turf_decal/tile/neutral/half{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/ruin/space/has_grav/dangerous_research/lab) "Kk" = ( /obj/machinery/light/broken/directional/west, /turf/open/floor/plating/rust, @@ -2774,10 +2776,28 @@ /obj/item/shard, /turf/open/floor/plating, /area/ruin/space/has_grav/dangerous_research/lab) +"Kx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/fluff/paper/stack{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/iron/white, +/area/ruin/space/has_grav/dangerous_research/lab) "KB" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/ruin/space/has_grav/dangerous_research/medical) +"KE" = ( +/obj/effect/turf_decal/trimline/purple/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/ruin/space/has_grav/dangerous_research/medical) "KM" = ( /obj/structure/barricade/wooden, /obj/structure/sign/warning/no_smoking/directional/north, @@ -2792,18 +2812,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/diagonal, /area/ruin/space/has_grav/dangerous_research) -"KS" = ( -/obj/item/kirbyplants/random, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/opposingcorners, -/turf/open/floor/iron/dark, -/area/ruin/space/has_grav/dangerous_research/dorms) -"KT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/misc/asteroid, -/area/ruin/space/has_grav/dangerous_research/medical) "KU" = ( /obj/structure/bed, /obj/item/bedsheet/purple, @@ -2813,19 +2821,24 @@ }, /turf/open/floor/iron/dark/corner, /area/ruin/space/has_grav/dangerous_research/dorms) -"La" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/medical/emergency, -/turf/open/floor/iron/white, -/area/ruin/space/has_grav/dangerous_research/lab) "Lc" = ( /obj/structure/flora/rock/pile/icy, /turf/open/misc/asteroid/airless, /area/ruin/space) -"Lk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/diagonal_edge, -/turf/open/floor/iron/dark/diagonal, +"Lp" = ( +/obj/structure/table, +/obj/item/flashlight/lamp{ + pixel_x = -6; + pixel_y = 13 + }, +/obj/item/paper/fluff/ruins/dangerous_research/beaches_journal_1, +/obj/structure/sign/poster/contraband/tea_over_tizira/directional/east, +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, /area/ruin/space/has_grav/dangerous_research/dorms) "Lr" = ( /obj/effect/decal/cleanable/glass, @@ -2833,17 +2846,16 @@ /obj/item/shard, /turf/open/floor/plating, /area/ruin/space/has_grav/dangerous_research/medical) -"Lz" = ( -/obj/effect/turf_decal/siding/purple{ +"Lu" = ( +/obj/effect/turf_decal/stripes/corner{ dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/purple/half/contrasted, -/turf/open/floor/iron/white, -/area/ruin/space/has_grav/dangerous_research) +/obj/effect/decal/cleanable/blood/footprints, +/obj/item/organ/internal/lungs, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/east, +/turf/open/floor/iron/dark, +/area/ruin/space/has_grav/dangerous_research/lab) "LC" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -2878,16 +2890,6 @@ /obj/effect/mapping_helpers/airlock/access/all/away/command, /turf/open/floor/iron/dark, /area/ruin/space/has_grav/dangerous_research/dorms) -"LW" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/purple/anticorner/contrasted, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/ruin/space/has_grav/dangerous_research/dorms) "LZ" = ( /obj/effect/turf_decal/siding/purple, /obj/structure/chair/sofa/bench/left, @@ -2934,17 +2936,6 @@ }, /turf/open/floor/iron/white, /area/ruin/space/has_grav/dangerous_research) -"MU" = ( -/obj/machinery/atmospherics/components/binary/valve/layer4{ - dir = 4; - name = "Air Tank B Valve" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/ruin/space/has_grav/dangerous_research/maint) "Nc" = ( /obj/machinery/door/airlock/science/glass{ name = "Alternate Sciences Research Center" @@ -2954,6 +2945,11 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/diagonal, /area/ruin/space/has_grav/dangerous_research) +"Nh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/blue/fourcorners, +/turf/open/floor/iron/white, +/area/ruin/space/has_grav/dangerous_research/medical) "Ni" = ( /obj/effect/turf_decal/tile/purple/diagonal_edge, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -2961,11 +2957,6 @@ }, /turf/open/floor/iron/diagonal, /area/ruin/space/has_grav/dangerous_research) -"No" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/opposingcorners, -/turf/open/floor/iron/dark, -/area/ruin/space/has_grav/dangerous_research/lab) "Nq" = ( /obj/effect/turf_decal/stripes/asteroid{ dir = 8 @@ -2974,11 +2965,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/ruin/space/has_grav/dangerous_research/lab) -"Nr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/opposingcorners, -/turf/open/floor/iron/dark, -/area/ruin/space/has_grav/dangerous_research/dorms) "Ns" = ( /obj/machinery/door/airlock/science{ name = "Decontamination" @@ -2996,13 +2982,31 @@ /obj/structure/flora/grass/brown/style_3, /turf/open/misc/sandy_dirt, /area/ruin/space/has_grav/dangerous_research) -"NK" = ( -/obj/effect/decal/cleanable/blood/footprints, -/obj/effect/decal/cleanable/blood/footprints{ - dir = 8 +"NA" = ( +/obj/structure/fluff/paper/stack{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/purple/anticorner/contrasted, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/ruin/space/has_grav/dangerous_research/dorms) +"NK" = ( +/obj/effect/decal/cleanable/blood/footprints, +/obj/effect/decal/cleanable/blood/footprints{ + dir = 8 }, /turf/open/floor/iron/dark, /area/ruin/space/has_grav/dangerous_research/lab) +"NM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/ruin/space/has_grav/dangerous_research/maint) "NN" = ( /obj/effect/decal/cleanable/blood/gibs/core, /obj/effect/decal/cleanable/blood/bubblegum, @@ -3011,19 +3015,22 @@ }, /turf/open/floor/iron/dark, /area/ruin/space/has_grav/dangerous_research/lab) -"NV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 +"NP" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/iron/white, +/obj/effect/decal/cleanable/blood/gibs/limb, +/obj/effect/decal/cleanable/blood/footprints, +/obj/effect/decal/cleanable/blood/footprints{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/bubblegum, +/obj/item/organ/internal/appendix, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/iron/dark, /area/ruin/space/has_grav/dangerous_research/lab) -"NX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/north, -/turf/open/floor/wood/parquet, -/area/ruin/space/has_grav/dangerous_research/dorms) "Oa" = ( /obj/effect/turf_decal/siding/purple/corner{ dir = 8 @@ -3043,13 +3050,16 @@ }, /turf/open/floor/iron, /area/ruin/space/has_grav/dangerous_research/maint) -"Oc" = ( -/obj/structure/sink/directional/south, -/obj/structure/mirror/directional/north, +"Of" = ( +/obj/structure/rack, +/obj/item/electronics/airlock, +/obj/item/electronics/airlock, +/obj/item/electronics/airlock, /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/south, -/turf/open/floor/iron/showroomfloor, -/area/ruin/space/has_grav/dangerous_research/dorms) +/obj/item/pen/screwdriver, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted, +/turf/open/floor/iron, +/area/ruin/space/has_grav/dangerous_research/maint) "On" = ( /turf/open/misc/asteroid/airless, /area/ruin/space) @@ -3070,10 +3080,25 @@ }, /turf/open/floor/iron/dark/diagonal, /area/ruin/space/has_grav/dangerous_research) +"Os" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2, +/turf/open/floor/iron, +/area/ruin/space/has_grav/dangerous_research/maint) "Oy" = ( /obj/structure/flora/rock/icy/style_random, /turf/open/misc/asteroid/airless, /area/ruin/space) +"OA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/official/safety_report/directional/south, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral/half{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/ruin/space/has_grav/dangerous_research/lab) "OB" = ( /obj/structure/table, /obj/structure/microscope, @@ -3082,29 +3107,6 @@ }, /turf/open/floor/iron/white, /area/ruin/space/has_grav/dangerous_research/lab) -"OC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair/office/light, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/opposingcorners, -/turf/open/floor/iron/dark, -/area/ruin/space/has_grav/dangerous_research/dorms) -"OK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/iron, -/area/ruin/space/has_grav/dangerous_research/maint) -"OL" = ( -/obj/effect/turf_decal/tile/neutral/diagonal_edge, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark/diagonal, -/area/ruin/space/has_grav/dangerous_research/dorms) "OM" = ( /obj/machinery/door/airlock/external, /obj/effect/mapping_helpers/airlock/cyclelink_helper{ @@ -3113,77 +3115,60 @@ /obj/effect/turf_decal/stripes/end, /turf/open/floor/iron/dark, /area/ruin/space/has_grav/dangerous_research) +"OO" = ( +/obj/machinery/atmospherics/components/binary/valve/on/layer4{ + dir = 4; + name = "Air Tank A Valve" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron, +/area/ruin/space/has_grav/dangerous_research/maint) "OR" = ( /obj/effect/turf_decal/tile/neutral/diagonal_edge, /obj/machinery/light/warm/directional/north, /obj/machinery/computer/arcade/battle, /turf/open/floor/iron/dark/diagonal, /area/ruin/space/has_grav/dangerous_research/dorms) -"OW" = ( -/obj/effect/turf_decal/tile/neutral/diagonal_edge, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/diagonal, -/area/ruin/space/has_grav/dangerous_research/dorms) -"Pb" = ( -/obj/effect/turf_decal/stripes/asteroid, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/white, -/area/ruin/space/has_grav/dangerous_research/lab) -"Pk" = ( -/obj/effect/decal/cleanable/blood/footprints{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/footprints, -/obj/effect/decal/cleanable/blood/footprints{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/bubblegum, -/obj/effect/heretic_rune/big, +"Pq" = ( +/obj/structure/rack, /obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/iron/dark, -/area/ruin/space/has_grav/dangerous_research/lab) -"Pn" = ( +/obj/item/soap, +/obj/item/reagent_containers/spray/cleaner, +/turf/open/floor/iron, +/area/ruin/space/has_grav/dangerous_research/maint) +"Pt" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/table/wood, -/obj/item/reagent_containers/cup/glass/bottle/vodka/badminka{ - pixel_x = 8; - pixel_y = 16 +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 }, -/obj/item/reagent_containers/cup/glass/drinkingglass/shotglass{ - pixel_x = 5; - pixel_y = 3 +/turf/open/floor/iron, +/area/ruin/space/has_grav/dangerous_research/maint) +"Pv" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 }, +/turf/open/floor/iron/white, +/area/ruin/space/has_grav/dangerous_research) +"PD" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/andromeda_bitters/directional/east, -/turf/open/floor/wood/parquet, -/area/ruin/space/has_grav/dangerous_research/dorms) -"Pu" = ( -/obj/structure/bed, -/obj/effect/decal/cleanable/dirt, -/obj/item/bedsheet/purple{ - dir = 8 - }, /obj/effect/turf_decal/tile/purple/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark/corner{ dir = 8 }, -/area/ruin/space/has_grav/dangerous_research/dorms) -"Pv" = ( -/obj/effect/turf_decal/tile/purple{ +/turf/open/floor/iron/dark/corner{ dir = 4 }, -/turf/open/floor/iron/white, -/area/ruin/space/has_grav/dangerous_research) -"PJ" = ( -/obj/effect/turf_decal/tile/neutral/diagonal_edge, +/area/ruin/space/has_grav/dangerous_research/dorms) +"PE" = ( /obj/effect/decal/cleanable/dirt, -/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/diagonal, -/area/ruin/space/has_grav/dangerous_research/dorms) +/turf/open/floor/iron/white, +/area/ruin/space/has_grav/dangerous_research) "PL" = ( /obj/structure/window/reinforced/spawner/directional/west, /obj/effect/turf_decal/tile/purple/diagonal_edge, @@ -3204,15 +3189,15 @@ /obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/iron/white, /area/ruin/space/has_grav/dangerous_research/medical) -"PP" = ( +"PR" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/chair/office{ +/obj/structure/window/reinforced/spawner/directional/south, +/obj/machinery/computer/terminal/dangerous_research/front_desk{ dir = 1 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/opposingcorners, +/obj/effect/turf_decal/tile/dark_red/half, /turf/open/floor/iron/dark, -/area/ruin/space/has_grav/dangerous_research/dorms) +/area/ruin/space/has_grav/dangerous_research) "Qa" = ( /obj/effect/turf_decal/siding/dark{ dir = 4 @@ -3246,15 +3231,6 @@ "Qv" = ( /turf/open/space/basic, /area/template_noop) -"Qy" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/ruin/space/has_grav/dangerous_research/maint) "QA" = ( /turf/open/misc/asteroid/airless{ icon_state = "asteroid1" @@ -3298,22 +3274,25 @@ }, /turf/open/floor/iron/white, /area/ruin/space/has_grav/dangerous_research/medical) -"Rd" = ( +"QS" = ( +/obj/effect/turf_decal/tile/neutral/diagonal_edge, /obj/effect/decal/cleanable/dirt, -/obj/structure/bed{ - dir = 4 - }, -/obj/item/bedsheet/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/diagonal, /area/ruin/space/has_grav/dangerous_research/dorms) "Rf" = ( /turf/closed/wall/r_wall, /area/ruin/space/has_grav/dangerous_research/medical) +"Rg" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm/directional/east, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron, +/area/ruin/space/has_grav/dangerous_research/maint) "Rj" = ( /obj/machinery/light/small/directional/north, /obj/structure/weightmachine/weightlifter, @@ -3324,33 +3303,14 @@ dir = 8 }, /area/ruin/space/has_grav/dangerous_research/dorms) -"Rr" = ( -/obj/effect/turf_decal/stripes/asteroid{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/gibs, -/obj/effect/decal/cleanable/blood/footprints, -/obj/effect/decal/cleanable/blood/footprints{ - dir = 4 - }, -/obj/structure/window/reinforced/spawner/directional/south, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/ruin/space/has_grav/dangerous_research/lab) -"Rs" = ( -/obj/structure/sign/poster/official/random/directional/north, +"Ro" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/dark_red/anticorner{ - dir = 1 +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 }, -/turf/open/floor/iron/dark, -/area/ruin/space/has_grav/dangerous_research) -"Rt" = ( -/obj/effect/turf_decal/tile/neutral/diagonal_edge, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/iron/dark/diagonal, -/area/ruin/space/has_grav/dangerous_research/dorms) +/turf/open/floor/iron/white, +/area/ruin/space/has_grav/dangerous_research/lab) "Rx" = ( /obj/structure/closet{ name = "Greyham's Locker" @@ -3393,6 +3353,33 @@ /obj/effect/turf_decal/tile/purple/diagonal_edge, /turf/open/floor/iron/diagonal, /area/ruin/space/has_grav/dangerous_research) +"RH" = ( +/obj/effect/turf_decal/stripes/asteroid{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/footprints{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/footprints{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/ruin/space/has_grav/dangerous_research/lab) +"RN" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/purple/half/contrasted, +/turf/open/floor/iron/white, +/area/ruin/space/has_grav/dangerous_research) "RR" = ( /obj/effect/turf_decal/stripes/corner{ dir = 8 @@ -3416,15 +3403,17 @@ }, /turf/open/floor/iron/white, /area/ruin/space/has_grav/dangerous_research) -"Si" = ( -/obj/effect/decal/cleanable/blood/tracks, -/obj/effect/decal/cleanable/blood/footprints{ +"Sg" = ( +/obj/effect/turf_decal/stripes/asteroid{ dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/ruin/space/has_grav/dangerous_research/medical) +/obj/effect/decal/cleanable/blood/footprints, +/obj/effect/decal/cleanable/blood/footprints{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/iron/dark, +/area/ruin/space/has_grav/dangerous_research/lab) "Sj" = ( /obj/structure/chair/office{ dir = 1 @@ -3479,6 +3468,17 @@ /obj/effect/turf_decal/tile/neutral/opposingcorners, /turf/open/floor/iron/dark, /area/ruin/space/has_grav/dangerous_research/lab) +"ST" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/gibs/core, +/obj/effect/decal/cleanable/blood/bubblegum, +/obj/effect/turf_decal/tile/neutral/opposingcorners, +/turf/open/floor/iron/dark, +/area/ruin/space/has_grav/dangerous_research/lab) +"SU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/white, +/area/ruin/space/has_grav/dangerous_research) "SV" = ( /obj/effect/turf_decal/stripes/end{ dir = 4 @@ -3489,9 +3489,25 @@ }, /turf/open/floor/iron/dark, /area/ruin/space/has_grav/dangerous_research) +"SW" = ( +/obj/effect/turf_decal/stripes/asteroid{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/ruin/space/has_grav/dangerous_research/lab) "Tc" = ( /turf/closed/wall/r_wall, /area/ruin/space/has_grav/dangerous_research/lab) +"Td" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/iron/white, +/area/ruin/space/has_grav/dangerous_research/medical) "Te" = ( /obj/effect/turf_decal/tile/purple/diagonal_edge, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -3506,14 +3522,6 @@ /obj/effect/turf_decal/tile/neutral/opposingcorners, /turf/open/floor/iron/dark, /area/ruin/space/has_grav/dangerous_research/dorms) -"TH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/syndiemoth/directional/north, -/obj/effect/turf_decal/tile/dark_red/half{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/ruin/space/has_grav/dangerous_research) "TV" = ( /obj/machinery/light/broken/directional/south, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -3544,6 +3552,14 @@ "Um" = ( /turf/closed/wall/r_wall/rust, /area/ruin/space/has_grav/dangerous_research/lab) +"Un" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/command{ + name = "Head Occultist Bedroom" + }, +/obj/effect/mapping_helpers/airlock/access/all/away/command, +/turf/open/floor/wood/parquet, +/area/ruin/space/has_grav/dangerous_research/dorms) "Uu" = ( /obj/effect/turf_decal/stripes/end{ dir = 8 @@ -3552,6 +3568,32 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/ruin/space/has_grav/dangerous_research) +"Uw" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/engineering{ + name = "ASRC Atmospherics" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/access/all/away/science, +/obj/effect/turf_decal/tile/yellow/fourcorners, +/turf/open/floor/iron, +/area/ruin/space/has_grav/dangerous_research/maint) +"Uz" = ( +/obj/effect/decal/cleanable/blood/footprints{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/footprints, +/obj/effect/decal/cleanable/blood/footprints{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/bubblegum, +/obj/effect/heretic_rune/big, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/iron/dark, +/area/ruin/space/has_grav/dangerous_research/lab) "UA" = ( /obj/machinery/door/airlock/science{ name = "Living Quarters" @@ -3562,32 +3604,18 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/diagonal, /area/ruin/space/has_grav/dangerous_research/dorms) -"UD" = ( -/obj/structure/chair/office{ - dir = 1 - }, +"UC" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/cable, /obj/effect/turf_decal/tile/neutral/opposingcorners, /turf/open/floor/iron/dark, /area/ruin/space/has_grav/dangerous_research/lab) -"UH" = ( +"UJ" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/window/reinforced/spawner/directional/south, -/obj/machinery/computer/terminal/dangerous_research/front_desk{ +/obj/effect/turf_decal/tile/purple/anticorner/contrasted, +/turf/open/floor/iron/dark/corner{ dir = 1 }, -/obj/effect/turf_decal/tile/dark_red/half, -/turf/open/floor/iron/dark, -/area/ruin/space/has_grav/dangerous_research) -"UQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/ruin/space/has_grav/dangerous_research/lab) +/area/ruin/space/has_grav/dangerous_research/dorms) "UT" = ( /obj/structure/flora/grass/brown, /obj/machinery/light/dim/directional/west, @@ -3601,26 +3629,6 @@ /obj/effect/turf_decal/tile/dark_red/half, /turf/open/floor/iron/dark, /area/ruin/space/has_grav/dangerous_research) -"Vd" = ( -/obj/structure/filingcabinet, -/obj/structure/window/reinforced/spawner/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/item/paper/fluff/ruins/dangerous_research/manifest, -/obj/effect/turf_decal/tile/dark_red/half, -/turf/open/floor/iron/dark, -/area/ruin/space/has_grav/dangerous_research) -"Vf" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/engineering{ - name = "ASRC Atmospherics" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/access/all/away/science, -/obj/effect/turf_decal/tile/yellow/fourcorners, -/turf/open/floor/iron, -/area/ruin/space/has_grav/dangerous_research/maint) "Vj" = ( /obj/effect/spawner/structure/window/reinforced/plasma, /turf/open/floor/plating, @@ -3636,6 +3644,12 @@ /obj/structure/flora/rock/icy/style_3, /turf/open/misc/asteroid/airless, /area/ruin/space) +"VF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/turf_decal/tile/neutral/opposingcorners, +/turf/open/floor/iron/dark, +/area/ruin/space/has_grav/dangerous_research/lab) "VL" = ( /obj/effect/turf_decal/stripes/corner{ dir = 8 @@ -3646,31 +3660,19 @@ /obj/structure/window/reinforced/spawner/directional/east, /turf/open/floor/iron/dark, /area/ruin/space/has_grav/dangerous_research/lab) -"VP" = ( -/obj/structure/closet{ - name = "Outpost Security Locker" - }, -/obj/structure/window/reinforced/spawner/directional/south, -/obj/effect/spawner/random/contraband/permabrig_weapon, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/item/ammo_box/c38, -/obj/effect/turf_decal/tile/dark_red/anticorner, -/turf/open/floor/iron/dark, -/area/ruin/space/has_grav/dangerous_research) -"VQ" = ( -/obj/structure/closet/crate, -/obj/item/reagent_containers/cup/glass/waterbottle/large, -/obj/item/reagent_containers/cup/glass/waterbottle/large, -/obj/item/reagent_containers/cup/glass/waterbottle/large, -/obj/item/food/canned/beans, -/obj/item/food/canned/beans, -/obj/item/food/canned/beans, +"Wi" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ +/obj/effect/turf_decal/stripes/asteroid{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/asteroid{ dir = 8 }, -/turf/open/floor/iron, -/area/ruin/space/has_grav/dangerous_research/maint) +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/ruin/space/has_grav/dangerous_research) "Wm" = ( /obj/item/stack/rods/ten, /obj/effect/turf_decal/tile/blue/fourcorners, @@ -3684,6 +3686,12 @@ /obj/effect/turf_decal/tile/neutral/opposingcorners, /turf/open/floor/iron/dark, /area/ruin/space/has_grav/dangerous_research/lab) +"Wo" = ( +/obj/item/kirbyplants/random, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral/opposingcorners, +/turf/open/floor/iron/dark, +/area/ruin/space/has_grav/dangerous_research/dorms) "Wt" = ( /obj/structure/table/optable, /obj/item/organ/internal/eyes, @@ -3692,6 +3700,16 @@ /obj/effect/turf_decal/tile/blue/fourcorners, /turf/open/floor/iron/white, /area/ruin/space/has_grav/dangerous_research/medical) +"Wx" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/clock/directional/south, +/obj/effect/turf_decal/tile/neutral/half{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/ruin/space/has_grav/dangerous_research/lab) "WG" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -3701,6 +3719,15 @@ }, /turf/open/floor/iron/white, /area/ruin/space/has_grav/dangerous_research) +"WM" = ( +/obj/structure/sign/poster/contraband/busty_backdoor_xeno_babes_6/directional/west, +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/ruin/space/has_grav/dangerous_research/dorms) "WQ" = ( /obj/structure/toilet{ pixel_x = 15; @@ -3729,12 +3756,6 @@ /obj/structure/cable, /turf/open/floor/plating/rust, /area/ruin/space/has_grav/dangerous_research/lab) -"Xi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/diagonal_edge, -/obj/structure/cable, -/turf/open/floor/iron/dark/diagonal, -/area/ruin/space/has_grav/dangerous_research/dorms) "Xk" = ( /obj/machinery/door/airlock/external, /obj/effect/mapping_helpers/airlock/cyclelink_helper{ @@ -3761,25 +3782,6 @@ }, /turf/open/floor/iron/white, /area/ruin/space/has_grav/dangerous_research/medical) -"XB" = ( -/obj/machinery/atmospherics/components/binary/pump/layer2{ - name = "Scrubbers To External" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/turf/open/floor/iron, -/area/ruin/space/has_grav/dangerous_research/maint) -"XI" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/effect/mapping_helpers/apc/away_general_access, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/oil/slippery, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/ruin/space/has_grav/dangerous_research/maint) "XO" = ( /obj/effect/decal/cleanable/blood/footprints{ dir = 8 @@ -3794,6 +3796,10 @@ /obj/effect/decal/cleanable/blood/footprints, /turf/open/floor/iron/white, /area/ruin/space/has_grav/dangerous_research/medical) +"XV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/white, +/area/ruin/space/has_grav/dangerous_research/medical) "XX" = ( /obj/structure/table, /obj/effect/turf_decal/tile/purple, @@ -3813,6 +3819,16 @@ /obj/structure/sign/departments/medbay/alt/directional/west, /turf/open/floor/iron/white, /area/ruin/space/has_grav/dangerous_research/medical) +"Yf" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/ruin/space/has_grav/dangerous_research) "Yh" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/purple/anticorner/contrasted{ @@ -3827,18 +3843,21 @@ /obj/effect/turf_decal/tile/neutral/half, /turf/open/floor/iron/dark, /area/ruin/space/has_grav/dangerous_research/lab) -"YA" = ( -/obj/effect/turf_decal/tile/neutral/diagonal_edge, -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair/sofa/bench/left{ - dir = 4 - }, -/turf/open/floor/iron/dark/diagonal, -/area/ruin/space/has_grav/dangerous_research) "YC" = ( /obj/structure/closet/l3closet/scientist, /turf/open/floor/iron/white, /area/ruin/space/has_grav/dangerous_research) +"YK" = ( +/obj/effect/decal/cleanable/blood/footprints{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/line, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/white, +/area/ruin/space/has_grav/dangerous_research/medical) "YL" = ( /obj/structure/closet{ name = "Smith's Locker" @@ -3854,55 +3873,36 @@ dir = 1 }, /area/ruin/space/has_grav/dangerous_research/dorms) -"YY" = ( -/obj/effect/turf_decal/trimline/purple/line{ - dir = 8 - }, +"YP" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/effect/mapping_helpers/apc/away_general_access, +/obj/structure/chair/office/light, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral/opposingcorners, +/turf/open/floor/iron/dark, +/area/ruin/space/has_grav/dangerous_research/dorms) +"YQ" = ( +/obj/structure/sink/directional/south, +/obj/structure/mirror/directional/east, +/obj/effect/decal/cleanable/dirt, +/obj/item/radio{ + pixel_x = -8 + }, /turf/open/floor/iron/white, -/area/ruin/space/has_grav/dangerous_research/medical) +/area/ruin/space/has_grav/dangerous_research/lab) "YZ" = ( /mob/living/basic/heretic_summon/rust_walker, /turf/open/floor/plating/rust, /area/ruin/space/has_grav/dangerous_research/lab) -"Zc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/suit/toggle/labcoat, -/obj/effect/mapping_helpers/atom_injector/element_injector{ - element_type = /datum/element/decal/blood; - target_type = /obj/item/clothing - }, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/white, -/area/ruin/space/has_grav/dangerous_research/medical) -"Zn" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/white, -/area/ruin/space/has_grav/dangerous_research/medical) "Zv" = ( /turf/closed/wall/r_wall/rust, /area/ruin/space/has_grav/dangerous_research/medical) -"Zw" = ( +"ZN" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood/parquet, -/area/ruin/space/has_grav/dangerous_research/dorms) -"ZF" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -1; - pixel_y = 5 - }, -/obj/item/pen, -/obj/structure/window/reinforced/spawner/directional/west, -/obj/structure/window/reinforced/spawner/directional/south, -/obj/effect/turf_decal/tile/dark_red/anticorner{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/ruin/space/has_grav/dangerous_research) +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/ruin/space/has_grav/dangerous_research/medical) (1,1,1) = {" Qv @@ -4038,13 +4038,13 @@ Bg Bg Bg Tc -No +UC Kk yO NN qg cp -fn +Kh gF Tc Bg @@ -4080,14 +4080,14 @@ Qv Bg Bg Tc -qv +pY cv zQ -mK +ST pO qE sG -ql +gG Tc Bg Bg @@ -4129,7 +4129,7 @@ TD zZ gH DY -qp +Wx Tc Bg Bg @@ -4167,7 +4167,7 @@ Tc TW iD ec -An +VF jz iR SS @@ -4176,11 +4176,11 @@ Tc Bg Bg ts -ae +JU Sj ts -tz -pC +cq +uh ts ts ts @@ -4212,23 +4212,23 @@ aW nx Wn Qn -UD -rd +ca +OA jp ts ts ts -Pu -uB +lu +NA ts -um +gz YL ts WQ ts -rl +ul EU -mu +lt ts On On @@ -4250,15 +4250,15 @@ Tc Tc BJ BN -fg +is BN AK Qa zO rq jp -Rd -pi +uf +WM ts ts tf @@ -4266,10 +4266,10 @@ ts jC ts ts -Oc +Bx ts -NX -Zw +eI +gk Fa ts VD @@ -4288,31 +4288,31 @@ Bg Bg Tc Yh -rF +dH Ei ay Dw -UQ -UQ +Ro +Ro fR xD Uk -Il +kb jp Rj -jk +UJ tk -Lk -OL +mU +DS JN -pa +aq aD Hx -ce +cA ts -Zw -Pn -gt +gk +oT +md ts On On @@ -4332,7 +4332,7 @@ Tc eq QE Tc -aB +gT fo vH EA @@ -4345,14 +4345,14 @@ ts ts ts OR -OL -Rt +DS +ne nT ts ts ts ts -qc +Un ts ts ts @@ -4371,7 +4371,7 @@ Qv Bg Bg Tc -hS +Gx BY Tc Tc @@ -4383,18 +4383,18 @@ Um Tc rT Qe -jJ -he +hf +HR tD -hL -bl +yL +QS Uc AT ts -KS -Cd +Wo +Bv TE -Nr +mL qB ts Bg @@ -4414,9 +4414,9 @@ Bg Bg Tc tq -La +Bj Tc -dw +hp Bs CL Ds @@ -4425,15 +4425,15 @@ CL EA Xh Qe -bP +hb Rx ts -CA -AO -Rt +dt +nQ +ne HF ts -DX +oX bu Ij Ny @@ -4455,7 +4455,7 @@ Qv Bg Bg Tc -fH +YQ nY Tc jq @@ -4464,21 +4464,21 @@ tF IZ iE fB -hI +NP TV jp ts ts ts qO -PJ -Rt +iG +ne zM ts Bm -OC +YP Fi -PP +vu ji dl On @@ -4501,20 +4501,20 @@ Tc Tc Tc OB -Pb +uO mp rb qq sa -Rr +Kb tb jp KU -Cs +PD HQ -OW +so nz -Xi +xv nv ts Bm @@ -4546,13 +4546,13 @@ jB qR eW sj -Pk +Uz Bc -DB +Sg tb jp -wh -LW +Lp +fj ts ts UA @@ -4590,7 +4590,7 @@ BE FZ kV NK -ou +bI tb jp jp @@ -4626,13 +4626,13 @@ Qv Bg Bg Tc -ci +xR Gb VL -Ja +ve tK JS -oH +Lu tb cd pb @@ -4668,16 +4668,16 @@ Qv CI Bg Tc -jF +rj dI -CD +SW oW -CS +RH xq Nq tP Fw -eu +zF iZ Tc LZ @@ -4686,13 +4686,13 @@ Hq Hq Hq Hq -Lz +RN Bq -lp +IA wJ MD zc -CG +Wi Xk zY Qv @@ -4710,14 +4710,14 @@ Qv On Bg Tc -FG +GW XX AH -tm -NV +Kx +wX dy fi -nm +Jk Tc tI wC @@ -4725,12 +4725,12 @@ Tc Oa RW RW -yr +Yf Hq Hq RD Nc -tv +hP Cf fO Bq @@ -4764,17 +4764,17 @@ fx fx Fw Tc -Rs +sY ri -ZF +Iq FJ Hq Hq -Lz +RN Bq wJ Ni -tv +hP Bq zY Qv @@ -4808,8 +4808,8 @@ ti Rf os cW -UH -rm +PR +JC Hq Hq RD @@ -4845,11 +4845,11 @@ XO tp tR qM -kP -fm +hD +Td Rf RB -sv +uZ Va FJ Hq @@ -4857,7 +4857,7 @@ Hq RD Bq wJ -lp +IA MD jh Gs @@ -4885,21 +4885,21 @@ Wt Vo kY pQ -uP +Je qM gR cm Rf -TH +gb yl -Vd +tj FJ Hq Hq RD pk RE -Gm +HL dX Bq Bq @@ -4923,18 +4923,18 @@ Bg Bg Rf ET -Zc +CJ PM -Ki -Zn +YK +XV IC Jh -wV +uQ kz Zv oJ at -VP +aU uR MT aa @@ -4965,24 +4965,24 @@ Bg Bg Rf FM -JF +Nh Wm wv -ak +HV PO pF Xy -fm +Td Zv DA DA DA DA Dk -HG +SU LJ ey -dm +yg AU pk Bg @@ -5009,9 +5009,9 @@ Zv xd zi re -lX +GH Go -uc +BQ KB SK cm @@ -5020,7 +5020,7 @@ KM yQ YC DA -yZ +Ay Pv LJ xN @@ -5052,7 +5052,7 @@ GZ GZ Cn lY -Si +Es vg Hu CU @@ -5060,12 +5060,12 @@ zD Gg Gz yT -nF +PE om Uu Oo LJ -YA +ek mX lq Bq @@ -5094,10 +5094,10 @@ nB GZ GZ nB -KT +pG gN KB -wV +uQ JA Rf xo @@ -5136,17 +5136,17 @@ nB xK xd xd -pP +IU qs Jh aI -FA +jU df jm ze -xJ +lo Ns -Dg +Bi Oo Gh Op @@ -5177,7 +5177,7 @@ nB nB Zv Zv -iw +dN pR gN Lr @@ -5190,7 +5190,7 @@ YC DA wt WG -tE +fS nS xS xN @@ -5221,10 +5221,10 @@ Bg Rf mg LC -bO +nX xd xd -fm +Td jR jR jR @@ -5262,23 +5262,23 @@ Bg Bg Rf mo -Ba +ZN un Hj kA cm jR -uG -BG -VQ +EY +fC +zT jR Cl -Vf +Uw Cl Cl -pu -oF -Qy +yc +vQ +eO jR On Bg @@ -5305,22 +5305,22 @@ Bg Rf nZ tQ -ix +KE SH zd cm jR -fT -zg -kj -Gd -tu -xb -AQ -By -OK -xW -XB +yA +jG +Ax +Iz +NM +oA +sM +Jd +Pt +Os +eg gl DL Qv @@ -5346,23 +5346,23 @@ Bg Bg Rf oa -YY -aY +aT +AE qM -jL +nN Qo jR -js -Ag -dC +mt +Pq +Of jR -XI -go +eN +Rg Ob -Aq -ra -MU -CB +OO +JY +Ah +CK jR On RA diff --git a/_maps/RandomRuins/SpaceRuins/russian_derelict.dmm b/_maps/RandomRuins/SpaceRuins/russian_derelict.dmm index 2ae4fecf5f00..33a7afc85c2e 100644 --- a/_maps/RandomRuins/SpaceRuins/russian_derelict.dmm +++ b/_maps/RandomRuins/SpaceRuins/russian_derelict.dmm @@ -81,6 +81,13 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/airless, /area/ruin/space/ks13/science/genetics) +"aE" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/chapel{ + dir = 1 + }, +/area/ruin/space/ks13/service/chapel) "aH" = ( /obj/effect/mapping_helpers/broken_floor, /obj/structure/grille/broken, @@ -267,6 +274,10 @@ }, /turf/open/floor/plating/airless, /area/ruin/space/ks13/security/sec) +"cG" = ( +/obj/structure/window/spawner/directional/south, +/turf/open/floor/plating, +/area/ruin/space/ks13/security/court) "cI" = ( /obj/structure/table_frame, /turf/open/floor/plating/airless, @@ -592,14 +603,6 @@ /obj/effect/spawner/random/trash/garbage, /turf/open/floor/plating/airless, /area/ruin/space/ks13/engineering/grav_gen) -"gy" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/structure/window/spawner/directional/south, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/ruin/space/ks13/security/court) "gB" = ( /obj/effect/spawner/structure/window/hollow/reinforced/end{ dir = 4 @@ -649,6 +652,14 @@ /obj/effect/mapping_helpers/burnt_floor, /turf/open/floor/plating/airless, /area/ruin/space/ks13/engineering/singulo) +"hH" = ( +/obj/structure/table/wood, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/iron/chapel{ + dir = 1 + }, +/area/ruin/space/ks13/service/chapel) "hK" = ( /turf/open/floor/plating/airless, /area/ruin/space/ks13/engineering/aft_solars_control) @@ -960,6 +971,14 @@ /obj/structure/cable, /turf/open/floor/iron/airless, /area/ruin/space/ks13/hallway/central) +"lP" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/structure/window/spawner/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/ruin/space/ks13/security/court) "lR" = ( /obj/structure/lattice, /obj/structure/frame/computer{ @@ -1148,13 +1167,6 @@ "od" = ( /turf/closed/wall/r_wall, /area/ruin/space/ks13/hallway/aft) -"oj" = ( -/obj/structure/window/reinforced/spawner/directional/south, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/chapel{ - dir = 1 - }, -/area/ruin/space/ks13/service/chapel) "om" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/mob_spawn/corpse/human, @@ -1194,14 +1206,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/airless, /area/ruin/space/ks13/hallway/aft) -"oC" = ( -/obj/structure/table/wood, -/obj/item/storage/book/bible, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/east, -/obj/structure/cable, -/turf/open/floor/wood, -/area/ruin/space/ks13/service/chapel_office) "oD" = ( /obj/item/stock_parts/manipulator, /obj/item/stock_parts/scanning_module{ @@ -1814,14 +1818,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/airless, /area/ruin/space/ks13/hallway/aft) -"rH" = ( -/obj/structure/window/spawner/directional/south, -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/ruin/space/ks13/security/court) "rI" = ( /obj/structure/table_frame/wood, /obj/item/clothing/head/helmet/chaplain{ @@ -2122,11 +2118,6 @@ /obj/structure/cable, /turf/open/floor/plating/airless, /area/ruin/space/ks13/engineering/singulo) -"sT" = ( -/obj/structure/window/spawner/directional/south, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/ruin/space/ks13/security/court) "sU" = ( /turf/closed/wall/r_wall, /area/ruin/space/ks13/engineering/singulo) @@ -2811,6 +2802,14 @@ /obj/item/stack/sheet/iron/fifty, /turf/open/floor/iron/airless, /area/ruin/space/ks13/ai/vault) +"wY" = ( +/obj/structure/window/spawner/directional/south, +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/ruin/space/ks13/security/court) "wZ" = ( /obj/effect/mob_spawn/corpse/human/scientist, /turf/template_noop, @@ -2904,10 +2903,6 @@ /obj/effect/spawner/structure/window/hollow/reinforced/middle, /turf/open/floor/plating/airless, /area/ruin/space/ks13/medical/medbay) -"xy" = ( -/obj/structure/window/spawner/directional/south, -/turf/open/floor/plating, -/area/ruin/space/ks13/security/court) "xA" = ( /obj/machinery/power/apc/auto_name/directional/south, /obj/effect/mapping_helpers/apc/no_charge, @@ -3791,14 +3786,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2, /turf/open/floor/iron/airless, /area/ruin/space/ks13/engineering/atmos) -"BH" = ( -/obj/structure/window/spawner/directional/south, -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/ruin/space/ks13/security/court) "BI" = ( /obj/effect/spawner/structure/window/hollow/reinforced/end, /turf/open/floor/plating/airless, @@ -3850,14 +3837,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/airless, /area/ruin/space/ks13/security/sec) -"BV" = ( -/obj/structure/window/reinforced/spawner/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/chapel{ - dir = 4 - }, -/area/ruin/space/ks13/service/chapel) "BW" = ( /obj/effect/spawner/structure/window/hollow/end, /turf/open/floor/plating, @@ -5732,14 +5711,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/ruin/space/ks13/engineering/singulo) -"Mb" = ( -/obj/structure/table/wood, -/obj/structure/window/reinforced/spawner/directional/south, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/iron/chapel{ - dir = 1 - }, -/area/ruin/space/ks13/service/chapel) "Mc" = ( /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, /turf/closed/wall/r_wall, @@ -6082,6 +6053,13 @@ /obj/structure/girder/reinforced, /turf/open/floor/plating/airless, /area/ruin/space/ks13/science/rnd) +"NU" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/chapel{ + dir = 4 + }, +/area/ruin/space/ks13/service/chapel) "NV" = ( /obj/effect/spawner/structure/window/hollow/reinforced/end, /turf/open/floor/plating/airless, @@ -6693,6 +6671,14 @@ /obj/structure/window/reinforced/spawner/directional/east, /turf/open/floor/plating, /area/ruin/space/ks13/service/chapel_office) +"QX" = ( +/obj/structure/window/spawner/directional/south, +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/ruin/space/ks13/security/court) "QY" = ( /obj/structure/grille/broken, /obj/effect/decal/cleanable/glass, @@ -6784,6 +6770,14 @@ /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating/airless, /area/ruin/space/ks13/engineering/tech_storage) +"Ru" = ( +/obj/structure/table/wood, +/obj/item/book/bible, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/east, +/obj/structure/cable, +/turf/open/floor/wood, +/area/ruin/space/ks13/service/chapel_office) "Rv" = ( /obj/effect/mapping_helpers/burnt_floor, /turf/open/floor/plating/airless, @@ -6893,6 +6887,11 @@ /obj/effect/spawner/structure/window/hollow/reinforced/middle, /turf/open/floor/plating/airless, /area/ruin/space/ks13/engineering/atmos) +"RZ" = ( +/obj/structure/window/spawner/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/ruin/space/ks13/security/court) "Sa" = ( /obj/machinery/portable_atmospherics/pump, /obj/effect/decal/cleanable/dirt, @@ -6902,6 +6901,14 @@ /obj/structure/closet/firecloset, /turf/open/floor/iron, /area/ruin/space/ks13/command/bridge_hall) +"Sd" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/chapel{ + dir = 4 + }, +/area/ruin/space/ks13/service/chapel) "Se" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/mapping_helpers/burnt_floor, @@ -8058,13 +8065,6 @@ /obj/structure/cable, /turf/open/floor/iron/airless, /area/ruin/space/ks13/science/rnd) -"Xz" = ( -/obj/structure/window/reinforced/spawner/directional/south, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/chapel{ - dir = 4 - }, -/area/ruin/space/ks13/service/chapel) "XA" = ( /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating/airless, @@ -8863,7 +8863,7 @@ MB rw PA JN -Mb +hH IW WA JN @@ -8976,7 +8976,7 @@ MB EQ Ok pN -Xz +NU IW xB vl @@ -9089,7 +9089,7 @@ MB rw oo zb -oj +aE IW OP LE @@ -9202,7 +9202,7 @@ sh rw Jf vl -BV +Sd je Eq vl @@ -9761,7 +9761,7 @@ rk aa MB Ky -oC +Ru kc sh rw @@ -16884,7 +16884,7 @@ Ge JT JT JT -sT +RZ oV EN uU @@ -16997,7 +16997,7 @@ gH KJ JT MO -gy +lP iU MU YL @@ -17110,7 +17110,7 @@ cJ Nv WB pv -rH +QX Yg pf YL @@ -17336,7 +17336,7 @@ JT WB NI eo -BH +wY oV Pq uU @@ -17449,7 +17449,7 @@ WB NI NI MO -gy +lP Ft NI uU @@ -17562,7 +17562,7 @@ Og WB NI WB -xy +cG Yg NI uU diff --git a/_maps/map_files/Blueshift/Blueshift.dmm b/_maps/map_files/Blueshift/Blueshift.dmm index df669457bce0..df77cc074b12 100644 --- a/_maps/map_files/Blueshift/Blueshift.dmm +++ b/_maps/map_files/Blueshift/Blueshift.dmm @@ -148,6 +148,10 @@ }, /turf/open/floor/iron, /area/station/commons/fitness/recreation) +"act" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall/r_wall, +/area/station/cargo/quartermaster) "acx" = ( /obj/machinery/conveyor{ dir = 1; @@ -985,16 +989,6 @@ /obj/structure/cable, /turf/closed/wall/r_wall, /area/station/ai_monitored/turret_protected/ai) -"akd" = ( -/obj/structure/aquarium, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/wood/parquet, -/area/station/cargo/quartermaster) "akf" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -1133,6 +1127,12 @@ /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/station/command/captain_dining) +"alN" = ( +/obj/machinery/light/small/directional/north, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/quartermaster, +/turf/open/floor/carpet, +/area/station/cargo/quartermaster) "alQ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -1389,6 +1389,14 @@ /obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible, /turf/open/space/basic, /area/space/nearstation) +"aoq" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/gary, +/turf/open/floor/iron, +/area/station/maintenance/thruster_room/central) "aor" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -1966,6 +1974,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/security/prison/upper) +"auf" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/wood/parquet, +/area/station/cargo/quartermaster) "auv" = ( /obj/effect/turf_decal/bot_white/left, /obj/effect/spawner/random/structure/crate, @@ -2651,14 +2666,6 @@ /obj/structure/chair/sofa/left/brown, /turf/open/floor/carpet, /area/station/medical/patients_rooms) -"aBl" = ( -/obj/structure/altar_of_gods, -/obj/structure/railing{ - dir = 4 - }, -/obj/item/storage/book/bible, -/turf/open/floor/carpet, -/area/station/service/chapel) "aBo" = ( /obj/effect/decal/remains/human, /turf/open/floor/material/meat, @@ -2669,6 +2676,15 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) +"aBw" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/assistant, +/obj/effect/landmark/start/gary/uncommon, +/turf/open/floor/wood/parquet, +/area/station/common/arcade) "aBz" = ( /obj/item/storage/secure/safe/directional/east, /turf/open/floor/carpet/green, @@ -2755,15 +2771,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/service/chapel/office) -"aCe" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/obj/effect/landmark/start/gary/uncommon, -/turf/open/floor/stone, -/area/station/service/forge) "aCf" = ( /obj/machinery/status_display/evac/directional/east, /obj/structure/chair/stool/directional/north, @@ -4427,6 +4434,12 @@ }, /turf/open/floor/iron, /area/station/engineering/atmos/pumproom) +"aTf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/drone_dispenser/preloaded, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron, +/area/station/science/research/abandoned) "aTg" = ( /obj/structure/bodycontainer/morgue, /obj/effect/turf_decal/bot_white, @@ -4840,11 +4853,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/white, /area/station/medical/surgery) -"aXz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/gary, -/turf/open/floor/grass, -/area/station/service/hydroponics/garden/abandoned) "aXB" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ @@ -5923,6 +5931,23 @@ }, /turf/open/floor/iron/white, /area/station/science/xenobiology/control) +"biD" = ( +/obj/structure/table/wood, +/obj/item/coin/gold{ + desc = "A limited edition coin printed with a FTU cargo hauler on the tail's side and the FTU logo on the head's side.. only 500 of these were ever made as a celebration to the passing of lessened trade regulations in the frontier sector."; + name = "FTU special edition collector's coin" + }, +/obj/item/toy/figure/clown{ + desc = "Aside from the engraving on the back of this figurine it's identical to any old NT departmental action figure, yet these sell for eye watering prices on the open market."; + name = "Comedycon edition clown action figure" + }, +/obj/item/reagent_containers/cup/glass/bottle/wine{ + desc = "A vintage wine bottle that appears to be produced on terra around the early 20th century.. the label is written in an ancient human language that sounds indecipherable.. le.. chateau.. what now?"; + name = "Vintage Terran red wine bottle" + }, +/obj/item/clothing/head/collectable/petehat, +/turf/open/floor/wood/parquet, +/area/station/cargo/quartermaster) "biE" = ( /obj/structure/cable, /obj/machinery/power/apc/auto_name/directional/north, @@ -6359,13 +6384,6 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/maintenance/disposal/incinerator) -"bmS" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/landmark/start/gary, -/turf/open/floor/carpet, -/area/station/service/theater/abandoned) "bmT" = ( /obj/machinery/photocopier, /obj/effect/turf_decal/bot, @@ -7465,12 +7483,6 @@ }, /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, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/grass, -/area/station/hallway/primary/upper) "bwY" = ( /obj/machinery/bluespace_vendor/directional/east, /turf/open/floor/iron/dark/side{ @@ -8121,6 +8133,10 @@ }, /turf/open/floor/grass, /area/station/security/prison/garden) +"bCR" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet, +/area/station/cargo/quartermaster) "bCW" = ( /obj/structure/chair/office, /obj/effect/turf_decal/vg_decals/numbers/four, @@ -8699,6 +8715,16 @@ /obj/machinery/light/directional/east, /turf/open/floor/wood, /area/station/command/captain_dining) +"bJM" = ( +/obj/structure/aquarium, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/wood/parquet, +/area/station/cargo/quartermaster) "bJS" = ( /obj/structure/table/reinforced, /obj/effect/turf_decal/bot, @@ -9168,6 +9194,25 @@ /obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, /turf/open/floor/plating, /area/station/science/ordnance/freezerchamber) +"bNE" = ( +/obj/item/trash/syndi_cakes, +/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/broken_floor, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters{ + id = "Starboardbowmaints"; + name = "Starboard Bow Maintenance" + }, +/obj/machinery/button/door/directional/north{ + id = "Starboardbowmaints"; + name = "Shutter control"; + pixel_x = 24; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/station/maintenance/fore/upper) "bNL" = ( /obj/structure/table/reinforced, /obj/item/aicard, @@ -9228,6 +9273,13 @@ dir = 4 }, /area/station/common/locker_room_shower) +"bOo" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/landmark/start/gary, +/turf/open/floor/carpet, +/area/station/service/theater/abandoned) "bOu" = ( /obj/structure/railing{ dir = 4 @@ -9436,6 +9488,15 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/central) +"bPR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/gary, +/turf/open/floor/iron, +/area/station/maintenance/starboard/fore) "bPS" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -10368,6 +10429,11 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/central/fore) +"bZx" = ( +/obj/structure/bed, +/obj/item/bedsheet/qm, +/turf/open/floor/carpet, +/area/station/cargo/quartermaster) "bZC" = ( /obj/structure/table, /obj/machinery/reagentgrinder{ @@ -10871,6 +10937,28 @@ dir = 4 }, /area/station/engineering/gravity_generator) +"cen" = ( +/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/wood/parquet, +/area/station/cargo/quartermaster) "cev" = ( /obj/structure/chair/sofa/bench/left{ dir = 4; @@ -11040,6 +11128,14 @@ /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/wood, /area/station/service/hydroponics/garden/abandoned) +"cfZ" = ( +/obj/item/kirbyplants/random, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/wood/parquet, +/area/station/cargo/quartermaster) "cgc" = ( /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden{ dir = 6 @@ -11667,6 +11763,16 @@ }, /turf/open/floor/engine, /area/station/engineering/supermatter/room) +"cmE" = ( +/obj/machinery/light/directional/south, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/duct, +/obj/effect/landmark/start/gary/rare, +/turf/open/floor/iron/cafeteria, +/area/station/commons/toilet/auxiliary) "cmG" = ( /obj/effect/turf_decal/bot_white, /turf/open/floor/iron/dark/smooth_large/airless, @@ -11739,6 +11845,13 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/aft/upper) +"cns" = ( +/obj/structure/cable, +/obj/structure/chair/stool/bar, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/gary, +/turf/open/floor/carpet/green, +/area/station/service/abandoned_gambling_den) "cnv" = ( /obj/effect/turf_decal/trimline/red/filled/warning{ dir = 1 @@ -12913,16 +13026,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/security/prison/workout) -"cxO" = ( -/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/landmark/start/gary/rare, -/turf/open/floor/carpet, -/area/station/service/library/printer) "cxW" = ( /obj/structure/window/reinforced/spawner/directional/south, /obj/structure/rack, @@ -13412,10 +13515,6 @@ dir = 1 }, /area/station/ai_monitored/security/armory) -"cBG" = ( -/obj/effect/landmark/start/gary, -/turf/open/floor/plating, -/area/station/maintenance/aft/upper) "cBJ" = ( /obj/structure/railing{ dir = 1 @@ -13631,15 +13730,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/grimy, /area/station/security/detectives_office/private_investigators_office) -"cDG" = ( -/obj/effect/turf_decal/siding/brown{ - dir = 1 - }, -/obj/machinery/computer/cargo{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/cargo/quartermaster) "cDI" = ( /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ dir = 5 @@ -14067,6 +14157,12 @@ /obj/structure/cable, /turf/open/floor/wood, /area/station/command/heads_quarters/hop) +"cGG" = ( +/obj/structure/flora/bush/jungle/a/style_2, +/obj/structure/flora/bush/flowers_yw/style_2, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/grass, +/area/station/hallway/primary/upper) "cGH" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -14480,6 +14576,15 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/textured_large, /area/station/security/office) +"cJQ" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 1 + }, +/obj/machinery/computer/piratepad_control{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/quartermaster) "cJU" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -16005,15 +16110,6 @@ /obj/effect/spawner/random/trash/garbage, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"cZI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/start/gary, -/turf/open/floor/iron, -/area/station/maintenance/starboard/fore) "cZL" = ( /obj/effect/turf_decal/delivery, /obj/machinery/door/window/brigdoor/left/directional/east{ @@ -16499,6 +16595,11 @@ /obj/effect/spawner/random/trash/mess, /turf/open/floor/plating, /area/station/maintenance/law) +"dfo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/gary, +/turf/open/floor/grass, +/area/station/service/hydroponics/garden/abandoned) "dfr" = ( /obj/structure/sink/directional/east, /obj/machinery/camera/directional/west{ @@ -17565,6 +17666,12 @@ /obj/machinery/door/airlock/maintenance, /turf/open/floor/plating, /area/station/maintenance/aft/upper) +"dqh" = ( +/obj/structure/flora/bush/jungle/b/style_2, +/obj/structure/flora/bush/flowers_pp/style_3, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/grass, +/area/station/hallway/primary/upper) "dqk" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 @@ -18085,21 +18192,6 @@ "dvB" = ( /turf/closed/wall/r_wall, /area/station/engineering/storage/tech) -"dvI" = ( -/obj/effect/turf_decal/siding/brown{ - dir = 1 - }, -/obj/machinery/computer/security/qm{ - dir = 1 - }, -/obj/machinery/requests_console/directional/south{ - department = "Quartermaster's Office"; - name = "Quartermaster's Requests Console" - }, -/obj/effect/mapping_helpers/requests_console/announcement, -/obj/effect/mapping_helpers/requests_console/supplies, -/turf/open/floor/iron/dark, -/area/station/cargo/quartermaster) "dvL" = ( /obj/structure/table/wood, /obj/structure/showcase/machinery/microwave{ @@ -18394,16 +18486,6 @@ /obj/structure/liquid_barrier, /turf/open/floor/iron/white, /area/station/science/xenobiology/control) -"dzr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/broken_floor, -/obj/machinery/duct, -/obj/structure/cable, -/obj/effect/landmark/start/gary, -/turf/open/floor/wood, -/area/station/commons/dorms/vacantroom) "dzs" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -18500,6 +18582,24 @@ /obj/machinery/suit_storage_unit/standard_unit, /turf/open/floor/iron/dark, /area/station/ai_monitored/command/storage/eva/upper) +"dAw" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/poddoor/shutters{ + id = "Portbowmaints"; + name = "Port Bow Maintenance" + }, +/obj/machinery/button/door/directional/north{ + id = "Portbowmaints"; + name = "Shutter control"; + pixel_x = 24; + pixel_y = 0 + }, +/turf/open/floor/iron/stairs/right, +/area/station/maintenance/port/upper) "dAB" = ( /obj/structure/closet/crate/bin, /turf/open/floor/iron, @@ -19628,12 +19728,6 @@ /obj/effect/decal/cleanable/dirt, /turf/closed/wall, /area/station/medical/power_station) -"dKI" = ( -/obj/structure/flora/bush/jungle/b/style_2, -/obj/structure/flora/bush/flowers_pp/style_3, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/grass, -/area/station/hallway/primary/upper) "dKK" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -19923,6 +20017,20 @@ }, /turf/open/floor/plating, /area/station/maintenance/department/engineering/engine_aft_port) +"dNr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/wood/parquet, +/area/station/cargo/quartermaster) +"dNx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/gary/rare, +/turf/open/floor/iron/white, +/area/station/medical/aslyum) "dNC" = ( /obj/effect/spawner/random/vending/colavend, /obj/effect/turf_decal/siding/thinplating_new{ @@ -20971,10 +21079,6 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/port/aft) -"dYV" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall/r_wall, -/area/station/cargo/quartermaster) "dZa" = ( /obj/effect/turf_decal/delivery, /obj/effect/turf_decal/stripes{ @@ -21717,6 +21821,12 @@ /obj/machinery/duct, /turf/open/floor/iron/dark, /area/station/common/night_club) +"ehv" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/wood/parquet, +/area/station/cargo/quartermaster) "ehw" = ( /obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, @@ -22876,24 +22986,6 @@ dir = 8 }, /area/station/security/brig) -"eul" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/poddoor/shutters{ - id = "Portbowmaints"; - name = "Port Bow Maintenance" - }, -/obj/machinery/button/door/directional/north{ - id = "Portbowmaints"; - name = "Shutter control"; - pixel_x = 24; - pixel_y = 0 - }, -/turf/open/floor/iron/stairs/right, -/area/station/maintenance/port/upper) "eum" = ( /obj/structure/cable, /obj/effect/landmark/event_spawn, @@ -25325,6 +25417,12 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plating, /area/station/maintenance/port/upper) +"ePR" = ( +/obj/structure/flora/bush/jungle/a/style_2, +/obj/structure/flora/bush/flowers_yw/style_3, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/grass, +/area/station/hallway/primary/upper) "ePU" = ( /obj/structure/table/reinforced, /obj/machinery/recharger{ @@ -25610,10 +25708,6 @@ /obj/machinery/newscaster/directional/east, /turf/open/floor/iron/dark/corner, /area/station/hallway/primary/central) -"eSI" = ( -/obj/machinery/suit_storage_unit/industrial/loader, -/turf/open/floor/plating, -/area/station/cargo/storage) "eSN" = ( /turf/closed/wall, /area/station/service/bar/backroom) @@ -25919,6 +26013,10 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/ai_monitored/turret_protected/aisat_interior) +"eVJ" = ( +/obj/effect/landmark/start/gary, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) "eVK" = ( /obj/structure/table, /obj/item/folder/blue{ @@ -26740,11 +26838,6 @@ /obj/effect/mapping_helpers/airlock/access/all/medical/surgery, /turf/open/floor/iron/white, /area/station/medical/coldroom) -"fdB" = ( -/obj/structure/bed, -/obj/item/bedsheet/qm, -/turf/open/floor/carpet, -/area/station/cargo/quartermaster) "fdD" = ( /obj/structure/window/reinforced/spawner/directional/east, /obj/effect/turf_decal/trimline/blue/line{ @@ -27305,12 +27398,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white, /area/station/medical/medbay/central) -"fiG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/cargo/quartermaster) "fiI" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron, @@ -27851,6 +27938,9 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/station/engineering/transit_tube) +"fpe" = ( +/turf/open/floor/wood/parquet, +/area/station/cargo/quartermaster) "fpl" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -28241,6 +28331,12 @@ }, /turf/open/floor/iron/dark, /area/station/security/prison/upper) +"fsX" = ( +/obj/structure/flora/bush/jungle/c/style_3, +/obj/structure/flora/bush/flowers_yw/style_3, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/grass, +/area/station/hallway/primary/upper) "fsY" = ( /obj/effect/spawner/random/trash/cigbutt, /obj/effect/decal/cleanable/dirt, @@ -28444,6 +28540,15 @@ /obj/structure/sign/warning/radiation/directional/east, /turf/open/floor/iron/dark, /area/station/engineering/gravity_generator) +"fvd" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/wood/parquet, +/area/station/cargo/quartermaster) "fvp" = ( /obj/structure/chair/office{ dir = 1 @@ -28726,6 +28831,10 @@ /obj/structure/closet/firecloset, /turf/open/floor/iron, /area/station/science/explab) +"fxQ" = ( +/obj/structure/decorative/shelf/alcohol_assortment, +/turf/open/floor/wood/parquet, +/area/station/cargo/quartermaster) "fxR" = ( /obj/effect/decal/cleanable/blood/old, /turf/open/floor/plating, @@ -29382,6 +29491,12 @@ /obj/effect/landmark/start/assistant, /turf/open/floor/iron, /area/station/common/wrestling/lobby) +"fGg" = ( +/obj/machinery/duct, +/obj/effect/spawner/random/trash/mess, +/obj/effect/landmark/start/gary, +/turf/open/floor/carpet, +/area/station/commons/dorms/vacantroom) "fGm" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -32017,19 +32132,6 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/security/execution/education) -"gia" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/siding/wood, -/obj/machinery/door/airlock/mining{ - name = "Deliveries" - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/qm, -/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, -/turf/open/floor/wood/parquet, -/area/station/cargo/quartermaster) "gib" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -32087,13 +32189,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/white/side, /area/station/science) -"giW" = ( -/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, -/turf/open/floor/iron/stairs/old, -/area/station/cargo/office) "gjd" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -32776,11 +32871,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/aft/upper) -"gpf" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood/parquet, -/area/station/cargo/quartermaster) "gpn" = ( /obj/machinery/disposal/delivery_chute{ dir = 8 @@ -33254,10 +33344,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/airless, /area/station/maintenance/fore/upper) -"gtW" = ( -/obj/effect/landmark/start/gary/uncommon, -/turf/open/floor/iron, -/area/station/commons/vacant_room/commissary) "gtZ" = ( /obj/effect/turf_decal/caution/stand_clear, /obj/structure/cable, @@ -33484,15 +33570,6 @@ "gwf" = ( /turf/open/floor/plating, /area/station/hallway/secondary/construction) -"gwg" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/wood/parquet, -/area/station/cargo/quartermaster) "gwh" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/trash/moisture_trap, @@ -34133,12 +34210,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/hallway/primary/starboard) -"gBx" = ( -/obj/structure/flora/bush/jungle, -/obj/structure/flora/bush/flowers_yw/style_3, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/grass, -/area/station/hallway/primary/upper) "gBz" = ( /obj/effect/spawner/random/trash/bacteria, /obj/effect/decal/cleanable/dirt, @@ -34486,16 +34557,6 @@ /obj/item/toy/figure/cmo, /turf/open/floor/carpet/blue, /area/station/command/heads_quarters/cmo) -"gFQ" = ( -/obj/machinery/light/directional/south, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/machinery/duct, -/obj/effect/landmark/start/gary/rare, -/turf/open/floor/iron/cafeteria, -/area/station/commons/toilet/auxiliary) "gFS" = ( /obj/machinery/door/poddoor/shutters{ id = "evashutters4"; @@ -34539,15 +34600,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) -"gGm" = ( -/obj/effect/turf_decal/siding/wood, -/obj/machinery/door/airlock/mining{ - name = "Deliveries" - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/qm, -/obj/structure/disposalpipe/segment, -/turf/open/floor/carpet, -/area/station/cargo/quartermaster) "gGo" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/side{ @@ -36788,6 +36840,27 @@ /obj/structure/sign/warning/vacuum/external/directional/east, /turf/open/floor/plating, /area/station/maintenance/fore/upper) +"heD" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/item/reagent_containers/cup/glass/bottle/rum{ + pixel_x = -7; + pixel_y = 10 + }, +/obj/item/storage/fancy/cigarettes/cigars/cohiba, +/obj/item/storage/fancy/cigarettes/cigars/havana{ + pixel_y = 4 + }, +/obj/item/clothing/mask/cigarette/rollie/cannabis{ + pixel_x = 8; + pixel_y = 15 + }, +/obj/item/lighter, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood/parquet, +/area/station/cargo/quartermaster) "heN" = ( /obj/effect/turf_decal/siding/thinplating/dark{ dir = 1 @@ -37007,13 +37080,6 @@ }, /turf/open/floor/iron/dark, /area/station/security/prison/mess) -"hgI" = ( -/obj/structure/bed/dogbed, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood/parquet, -/area/station/cargo/quartermaster) "hgL" = ( /obj/structure/toilet{ dir = 1 @@ -37941,15 +38007,6 @@ /obj/effect/turf_decal/tile/green/opposingcorners, /turf/open/floor/iron/white, /area/station/medical/virology) -"hpv" = ( -/obj/effect/turf_decal/siding/brown{ - dir = 1 - }, -/obj/machinery/computer/piratepad_control{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/cargo/quartermaster) "hpF" = ( /obj/effect/turf_decal/tile/dark_blue/half/contrasted, /obj/machinery/power/apc/auto_name/directional/south, @@ -38237,14 +38294,6 @@ dir = 5 }, /area/station/security/prison) -"htj" = ( -/obj/item/kirbyplants/random, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/wood/parquet, -/area/station/cargo/quartermaster) "htq" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -38524,12 +38573,6 @@ /obj/structure/window/spawner/directional/south, /turf/open/floor/plating, /area/station/maintenance/department/security/greater) -"hwe" = ( -/obj/structure/flora/bush/jungle/a/style_2, -/obj/structure/flora/bush/flowers_yw/style_2, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/grass, -/area/station/hallway/primary/upper) "hwi" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -38856,6 +38899,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/hallway/secondary/service) +"hAk" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood/parquet, +/area/station/cargo/quartermaster) "hAn" = ( /obj/structure/closet/crate{ name = "Stations and Syndicate Starter Bundle" @@ -39532,6 +39581,10 @@ "hGf" = ( /turf/closed/wall/r_wall, /area/station/security/brig) +"hGg" = ( +/obj/machinery/suit_storage_unit/industrial/loader, +/turf/open/floor/plating, +/area/station/cargo/storage) "hGi" = ( /obj/machinery/computer/mecha, /obj/effect/turf_decal/tile/purple, @@ -39624,6 +39677,11 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/iron, /area/station/hallway/primary/upper) +"hHm" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/parquet, +/area/station/cargo/quartermaster) "hHn" = ( /obj/structure/window/reinforced/spawner/directional/south, /obj/structure/chair{ @@ -40909,10 +40967,6 @@ "hTp" = ( /turf/closed/wall, /area/station/command/heads_quarters/captain) -"hTx" = ( -/obj/structure/dresser, -/turf/open/floor/carpet, -/area/station/cargo/quartermaster) "hTD" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -41002,19 +41056,6 @@ }, /turf/open/floor/iron/dark, /area/station/security/courtroom) -"hUu" = ( -/obj/structure/table/wood, -/obj/structure/closet/crate/cardboard{ - pixel_y = 5 - }, -/obj/item/clothing/shoes/jackboots/timbs, -/obj/item/clothing/suit/brownfurrich/public, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/wood/parquet, -/area/station/cargo/quartermaster) "hUw" = ( /obj/structure/cable, /obj/effect/turf_decal/stripes/line{ @@ -41165,6 +41206,12 @@ }, /turf/open/floor/glass/reinforced/airless, /area/space/nearstation) +"hWd" = ( +/obj/structure/flora/bush/jungle/b/style_2, +/obj/structure/flora/bush/flowers_pp, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/grass, +/area/station/hallway/primary/upper) "hWj" = ( /turf/open/floor/plating, /area/station/security/prison/mess) @@ -41981,25 +42028,6 @@ }, /turf/open/floor/iron/dark, /area/station/security/brig) -"ier" = ( -/obj/machinery/button/door/directional/west{ - id = "QMdoor"; - name = "Door lock"; - normaldoorcontrol = 1; - pixel_x = -32; - pixel_y = -6; - req_access = list("qm"); - specialfunctions = 4 - }, -/obj/machinery/button/door{ - id = "qmprivacy"; - name = "Privacy Control"; - pixel_x = -32; - pixel_y = 7; - req_access = list("qm") - }, -/turf/open/floor/wood/parquet, -/area/station/cargo/quartermaster) "ies" = ( /obj/effect/turf_decal/siding/wood{ dir = 9 @@ -42410,6 +42438,25 @@ dir = 4 }, /area/station/command/secure_bunker) +"iiy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/mess, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/machinery/button/door/directional/north{ + id = "Starboardbowmaints"; + name = "Shutter control"; + pixel_x = 24; + pixel_y = 0 + }, +/obj/machinery/door/poddoor/shutters{ + id = "Starboardbowmaints"; + name = "Starboard Bow Maintenance" + }, +/turf/open/floor/plating, +/area/station/maintenance/fore/upper) "iiC" = ( /obj/structure/cable, /obj/machinery/door/airlock/maintenance{ @@ -42649,6 +42696,20 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/service) +"ikF" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/landmark/generic_maintenance_landmark, +/obj/structure/cable, +/obj/effect/landmark/start/gary, +/turf/open/floor/carpet, +/area/station/maintenance/abandon_psych) "ikG" = ( /obj/effect/decal/cleanable/oil, /turf/open/floor/iron/dark, @@ -44040,14 +44101,6 @@ /obj/structure/railing, /turf/open/floor/iron/dark/side, /area/station/ai_monitored/command/storage/eva) -"izG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/gary, -/turf/open/floor/wood, -/area/station/service/electronic_marketing_den) "izM" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 @@ -45218,12 +45271,6 @@ "iMc" = ( /turf/closed/wall/r_wall, /area/station/common/pool) -"iMf" = ( -/obj/structure/flora/bush/jungle/c/style_3, -/obj/structure/flora/bush/flowers_br, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/grass, -/area/station/hallway/primary/upper) "iMj" = ( /obj/structure/closet, /obj/effect/turf_decal/delivery, @@ -45561,23 +45608,6 @@ }, /turf/open/floor/plating, /area/station/security/interrogation) -"iQW" = ( -/obj/structure/table/wood, -/obj/item/coin/gold{ - desc = "A limited edition coin printed with a FTU cargo hauler on the tail's side and the FTU logo on the head's side.. only 500 of these were ever made as a celebration to the passing of lessened trade regulations in the frontier sector."; - name = "FTU special edition collector's coin" - }, -/obj/item/toy/figure/clown{ - desc = "Aside from the engraving on the back of this figurine it's identical to any old NT departmental action figure, yet these sell for eye watering prices on the open market."; - name = "Comedycon edition clown action figure" - }, -/obj/item/reagent_containers/cup/glass/bottle/wine{ - desc = "A vintage wine bottle that appears to be produced on terra around the early 20th century.. the label is written in an ancient human language that sounds indecipherable.. le.. chateau.. what now?"; - name = "Vintage Terran red wine bottle" - }, -/obj/item/clothing/head/collectable/petehat, -/turf/open/floor/wood/parquet, -/area/station/cargo/quartermaster) "iQX" = ( /obj/structure/table/reinforced, /obj/effect/turf_decal/bot, @@ -45763,9 +45793,6 @@ "iTN" = ( /turf/open/floor/carpet/green, /area/station/service/abandoned_gambling_den) -"iTO" = ( -/turf/closed/wall, -/area/station/cargo/quartermaster) "iTP" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/curtain/cloth/fancy/mechanical{ @@ -46097,12 +46124,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/carpet/blue, /area/station/command/captain_dining) -"iWF" = ( -/obj/structure/flora/bush/jungle/c/style_3, -/obj/structure/flora/bush/flowers_yw/style_3, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/grass, -/area/station/hallway/primary/upper) "iWJ" = ( /obj/structure/bed, /obj/item/bedsheet/medical, @@ -46481,15 +46502,6 @@ /obj/structure/lattice/catwalk, /turf/open/openspace, /area/station/maintenance/department/medical/central) -"iZA" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/assistant, -/obj/effect/landmark/start/gary/uncommon, -/turf/open/floor/wood/parquet, -/area/station/common/arcade) "iZC" = ( /obj/structure/table/wood, /obj/structure/window/reinforced/spawner/directional/west, @@ -47143,6 +47155,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/department/engineering/engine_aft_port) +"jhc" = ( +/obj/structure/chair/wood/wings{ + dir = 8 + }, +/obj/effect/landmark/start/librarian, +/obj/effect/landmark/start/gary/rare, +/turf/open/floor/carpet, +/area/station/service/library/lounge) "jhe" = ( /obj/effect/turf_decal/stripes/white/line{ dir = 1 @@ -47438,10 +47458,6 @@ dir = 8 }, /area/station/commons/fitness) -"jjN" = ( -/obj/effect/landmark/start/gary, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction) "jjP" = ( /obj/effect/spawner/random/structure/crate, /turf/open/floor/plating, @@ -48608,6 +48624,12 @@ /obj/effect/turf_decal/siding/thinplating/dark, /turf/open/floor/circuit, /area/station/ai_monitored/turret_protected/ai) +"jvl" = ( +/obj/structure/flora/bush/jungle/c/style_3, +/obj/structure/flora/bush/flowers_br, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/grass, +/area/station/hallway/primary/upper) "jvm" = ( /obj/effect/turf_decal/siding/wood{ dir = 5 @@ -48868,12 +48890,6 @@ }, /turf/open/floor/carpet/blue, /area/station/command/heads_quarters/captain/private) -"jxK" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/structure/sign/calendar/directional/north, -/turf/open/floor/wood/parquet, -/area/station/cargo/quartermaster) "jxM" = ( /obj/machinery/disposal/bin, /obj/effect/turf_decal/delivery, @@ -49055,23 +49071,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/service/library/private) -"jzZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/firedoor, -/obj/machinery/button/door/directional/north{ - id = "Portbowmaints"; - name = "Shutter control"; - pixel_x = -24; - pixel_y = 0 - }, -/obj/machinery/door/poddoor/shutters{ - id = "Portbowmaints"; - name = "Port Bow Maintenance" - }, -/turf/open/floor/iron/stairs/left{ - dir = 1 - }, -/area/station/maintenance/port/upper) "jAa" = ( /obj/machinery/vending/coffee, /obj/effect/turf_decal/bot, @@ -49419,6 +49418,12 @@ /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, /turf/open/floor/iron, /area/station/engineering/atmos) +"jDl" = ( +/obj/structure/flora/bush/jungle/b, +/obj/structure/flora/bush/flowers_yw, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/grass, +/area/station/hallway/primary/upper) "jDp" = ( /obj/machinery/atmospherics/pipe/layer_manifold/brown/visible, /obj/effect/spawner/structure/window/reinforced/plasma, @@ -50047,12 +50052,6 @@ /obj/effect/landmark/start/assistant, /turf/open/floor/iron/dark, /area/station/common/gaskiosk) -"jJh" = ( -/obj/structure/flora/bush/jungle/c/style_3, -/obj/structure/flora/bush/flowers_pp/style_3, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/grass, -/area/station/hallway/primary/upper) "jJi" = ( /obj/structure/railing, /obj/effect/turf_decal/stripes, @@ -51250,6 +51249,10 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/disposal) +"jUq" = ( +/obj/effect/landmark/start/quartermaster, +/turf/open/floor/wood/parquet, +/area/station/cargo/quartermaster) "jUt" = ( /obj/structure/table/wood/poker, /obj/effect/spawner/random/entertainment/gambling, @@ -51467,6 +51470,14 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/port) +"jVS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/gary, +/turf/open/floor/wood, +/area/station/service/electronic_marketing_den) "jVT" = ( /obj/effect/mapping_helpers/broken_floor, /obj/machinery/power/smes/engineering, @@ -51909,27 +51920,6 @@ dir = 4 }, /area/station/hallway/primary/port) -"jZU" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/siding/wood{ - dir = 5 - }, -/obj/item/reagent_containers/cup/glass/bottle/rum{ - pixel_x = -7; - pixel_y = 10 - }, -/obj/item/storage/fancy/cigarettes/cigars/cohiba, -/obj/item/storage/fancy/cigarettes/cigars/havana{ - pixel_y = 4 - }, -/obj/item/clothing/mask/cigarette/rollie/cannabis{ - pixel_x = 8; - pixel_y = 15 - }, -/obj/item/lighter, -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood/parquet, -/area/station/cargo/quartermaster) "jZZ" = ( /obj/structure/window/spawner/directional/north, /obj/effect/decal/cleanable/dirt, @@ -52115,13 +52105,6 @@ /obj/structure/cable, /turf/open/floor/wood, /area/station/common/pool/sauna) -"kcU" = ( -/obj/structure/cable, -/obj/structure/chair/stool/bar, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/gary, -/turf/open/floor/carpet/green, -/area/station/service/abandoned_gambling_den) "kcZ" = ( /obj/effect/turf_decal/bot, /obj/structure/liquid_pump, @@ -53314,12 +53297,6 @@ }, /turf/open/floor/iron/dark, /area/station/security/prison/workout) -"knr" = ( -/obj/structure/flora/bush/jungle/a, -/obj/structure/flora/bush/flowers_br/style_3, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/grass, -/area/station/hallway/primary/upper) "knt" = ( /obj/structure/chair/pew/right{ dir = 8 @@ -53385,44 +53362,6 @@ }, /turf/open/floor/iron/dark/side, /area/station/security/prison/upper) -"knG" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/item/paper_bin{ - pixel_x = -12; - pixel_y = 3 - }, -/obj/item/pen/fourcolor{ - pixel_x = -12; - pixel_y = 5 - }, -/obj/item/hand_labeler{ - pixel_y = 17 - }, -/obj/item/computer_disk/quartermaster{ - pixel_x = 6; - pixel_y = 5 - }, -/obj/item/computer_disk/quartermaster{ - pixel_x = 6; - pixel_y = 5 - }, -/obj/item/computer_disk/quartermaster{ - pixel_x = 6; - pixel_y = 5 - }, -/obj/item/flashlight/lamp/green{ - pixel_y = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/wood/parquet, -/area/station/cargo/quartermaster) "knM" = ( /obj/effect/turf_decal/tile/neutral, /obj/structure/extinguisher_cabinet/directional/east, @@ -55194,12 +55133,6 @@ dir = 8 }, /area/station/science) -"kER" = ( -/obj/structure/flora/bush/jungle/a/style_3, -/obj/structure/flora/bush/flowers_br/style_2, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/grass, -/area/station/hallway/primary/upper) "kFd" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/mining{ @@ -56585,13 +56518,6 @@ /obj/structure/closet/crate/freezer/blood, /turf/open/floor/iron/white, /area/station/medical/coldroom) -"kVe" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/wood/parquet, -/area/station/cargo/quartermaster) "kVx" = ( /obj/structure/sink/directional/east, /turf/open/floor/iron/kitchen{ @@ -57067,6 +56993,12 @@ }, /turf/open/floor/iron/dark/side, /area/station/security/prison) +"laH" = ( +/obj/structure/flora/bush/jungle/a/style_3, +/obj/structure/flora/bush/flowers_br/style_2, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/grass, +/area/station/hallway/primary/upper) "laI" = ( /obj/structure/cable, /turf/open/floor/iron/dark, @@ -57490,6 +57422,9 @@ dir = 4 }, /area/station/hallway/primary/port) +"lei" = ( +/turf/closed/wall/r_wall, +/area/station/hallway/primary/upper) "lej" = ( /obj/effect/turf_decal/trimline/purple/filled/line, /obj/machinery/status_display/ai/directional/south, @@ -57794,6 +57729,15 @@ dir = 8 }, /area/station/maintenance/solars/port/fore) +"lhn" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "qmprivacy"; + name = "Quartermaster's Privacy Shutters" + }, +/turf/open/floor/plating, +/area/station/cargo/quartermaster) "lhr" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 @@ -59751,10 +59695,6 @@ /obj/structure/curtain/bounty, /turf/open/floor/plating, /area/station/medical/virology/isolation) -"lBX" = ( -/obj/effect/landmark/start/gary, -/turf/open/floor/plating, -/area/station/maintenance/port/central) "lCe" = ( /obj/structure/window/reinforced/spawner/directional/west, /obj/structure/window/reinforced/spawner/directional/east, @@ -60161,6 +60101,12 @@ /obj/structure/extinguisher_cabinet/directional/south, /turf/open/floor/iron/kitchen, /area/station/service/kitchen/diner) +"lGg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/gary, +/turf/open/floor/iron/cafeteria, +/area/station/maintenance/abandon_diner) "lGl" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -60710,6 +60656,10 @@ /obj/machinery/light/small/directional/north, /turf/open/floor/iron/dark, /area/station/engineering/atmos/pumproom) +"lLF" = ( +/obj/structure/cable, +/turf/open/floor/iron/solarpanel/airless, +/area/station/solars/starboard/aft) "lLJ" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -61039,6 +60989,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/cargo/office) +"lPh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/wood/parquet, +/area/station/cargo/quartermaster) "lPl" = ( /obj/effect/spawner/random/trash/moisture_trap, /turf/open/floor/plating, @@ -61202,14 +61159,6 @@ /obj/effect/spawner/random/exotic/languagebook, /turf/open/floor/plating, /area/station/maintenance/department/science/lower) -"lRb" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/gary, -/turf/open/floor/iron, -/area/station/maintenance/thruster_room/central) "lRf" = ( /obj/structure/table, /obj/item/storage/photo_album, @@ -61618,6 +61567,13 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/upper) +"lVl" = ( +/obj/structure/closet/secure_closet/quartermaster, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/quartermaster) "lVm" = ( /obj/structure/window/reinforced/spawner/directional/east, /obj/structure/closet/crate/coffin, @@ -61812,18 +61768,6 @@ "lXw" = ( /turf/closed/wall, /area/station/command/heads_quarters/captain/private) -"lXx" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - dir = 4; - id = "qmprivacy"; - name = "Quartermaster's Privacy Shutters" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/cargo/quartermaster) "lXy" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -61941,6 +61885,10 @@ /obj/structure/sign/warning/radiation/directional/east, /turf/open/floor/iron/dark, /area/station/engineering/supermatter/room) +"lYB" = ( +/obj/effect/landmark/start/gary, +/turf/open/floor/plating, +/area/station/maintenance/port/central) "lYD" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 @@ -62060,6 +62008,11 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/command/heads_quarters/hos) +"lZi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/gary, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) "lZl" = ( /obj/item/kirbyplants/random, /turf/open/floor/iron, @@ -62227,10 +62180,6 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron/freezer, /area/station/maintenance/abandon_kitchen_upper) -"mba" = ( -/obj/structure/cable, -/turf/open/floor/iron/solarpanel/airless, -/area/station/solars/starboard/aft) "mbb" = ( /obj/machinery/light/floor/has_bulb, /obj/effect/turf_decal/bot_white, @@ -62516,13 +62465,6 @@ dir = 4 }, /area/station/hallway/secondary/entry) -"mdB" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/wood/parquet, -/area/station/cargo/quartermaster) "mdF" = ( /obj/machinery/power/supermatter_crystal/engine, /obj/effect/turf_decal/stripes/box, @@ -62644,6 +62586,14 @@ /obj/effect/turf_decal/bot_white/right, /turf/open/floor/iron/dark, /area/station/command/gateway) +"meH" = ( +/obj/structure/altar_of_gods, +/obj/structure/railing{ + dir = 4 + }, +/obj/item/book/bible, +/turf/open/floor/carpet, +/area/station/service/chapel) "meJ" = ( /obj/effect/turf_decal/stripes{ dir = 5 @@ -62751,6 +62701,13 @@ /obj/effect/mapping_helpers/airlock/unres, /turf/open/floor/plating, /area/station/maintenance/department/engineering/engine_aft_port) +"mgb" = ( +/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, +/turf/open/floor/iron/stairs/old, +/area/station/cargo/office) "mgi" = ( /obj/structure/chair/sofa/corp/corner{ dir = 8 @@ -64016,6 +63973,12 @@ dir = 1 }, /area/station/command/secure_bunker) +"muJ" = ( +/obj/structure/flora/bush/jungle/b/style_2, +/obj/structure/flora/bush/flowers_br/style_3, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/grass, +/area/station/hallway/primary/upper) "muK" = ( /obj/structure/cable, /obj/machinery/door/airlock/hatch{ @@ -64294,6 +64257,20 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) +"mxr" = ( +/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/landmark/start/gary/rare, +/turf/open/floor/carpet, +/area/station/service/library/printer) +"mxu" = ( +/obj/effect/landmark/start/gary/uncommon, +/turf/open/floor/iron, +/area/station/commons/vacant_room/commissary) "mxE" = ( /obj/structure/table/reinforced, /obj/item/paper_bin{ @@ -64316,20 +64293,6 @@ /obj/item/radio/intercom/directional/south, /turf/open/floor/iron/white, /area/station/science/xenobiology) -"mxX" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 10 - }, -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/landmark/generic_maintenance_landmark, -/obj/structure/cable, -/obj/effect/landmark/start/gary, -/turf/open/floor/carpet, -/area/station/maintenance/abandon_psych) "mya" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -64488,9 +64451,6 @@ /obj/machinery/light/directional/south, /turf/open/floor/wood, /area/station/command/heads_quarters/captain/private) -"mzu" = ( -/turf/closed/wall/r_wall, -/area/station/hallway/primary/upper) "mzv" = ( /obj/machinery/duct, /turf/open/floor/iron/freezer, @@ -64999,6 +64959,21 @@ /obj/machinery/plumbing/input, /turf/open/floor/iron/dark, /area/station/science/cytology) +"mEK" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 1 + }, +/obj/machinery/computer/security/qm{ + dir = 1 + }, +/obj/machinery/requests_console/directional/south{ + department = "Quartermaster's Office"; + name = "Quartermaster's Requests Console" + }, +/obj/effect/mapping_helpers/requests_console/announcement, +/obj/effect/mapping_helpers/requests_console/supplies, +/turf/open/floor/iron/dark, +/area/station/cargo/quartermaster) "mER" = ( /obj/machinery/light/directional/east, /obj/machinery/computer/department_orders/engineering{ @@ -65735,6 +65710,13 @@ /obj/effect/landmark/generic_maintenance_landmark, /turf/open/floor/plating, /area/station/maintenance/aft/upper) +"mLV" = ( +/obj/structure/chair/office, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/obj/effect/landmark/start/gary, +/turf/open/floor/wood, +/area/station/security/detectives_office/private_investigators_office) "mLX" = ( /obj/item/food/cheese/wheel, /turf/open/misc/sandy_dirt, @@ -66672,12 +66654,6 @@ }, /turf/open/floor/engine/hull/reinforced, /area/space/nearstation) -"mVh" = ( -/obj/structure/flora/bush/jungle/b, -/obj/structure/flora/bush/flowers_yw, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/grass, -/area/station/hallway/primary/upper) "mVi" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 @@ -66972,12 +66948,6 @@ /obj/effect/mapping_helpers/airlock/access/all/engineering/external, /turf/open/floor/plating, /area/station/maintenance/aft/upper) -"mYp" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/obj/effect/landmark/start/quartermaster, -/turf/open/floor/wood/parquet, -/area/station/cargo/quartermaster) "mYx" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, @@ -67750,6 +67720,12 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/engineering/atmos) +"ngF" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/structure/sign/calendar/directional/north, +/turf/open/floor/wood/parquet, +/area/station/cargo/quartermaster) "ngG" = ( /obj/machinery/door/airlock/grunge{ name = "Chapel Hall" @@ -68235,12 +68211,6 @@ dir = 4 }, /area/station/security/checkpoint/escape) -"nlV" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/gary, -/turf/open/floor/carpet/red, -/area/station/service/library/abandoned) "nlW" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -68780,10 +68750,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/stairs/left, /area/station/cargo/storage) -"nsx" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood/parquet, -/area/station/cargo/quartermaster) "nsy" = ( /obj/structure/ladder, /obj/effect/turf_decal/stripes/white/box, @@ -69557,13 +69523,6 @@ }, /turf/open/floor/plating, /area/station/security/checkpoint/customs) -"nAy" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/obj/effect/landmark/start/quartermaster, -/turf/open/floor/wood/parquet, -/area/station/cargo/quartermaster) "nAD" = ( /obj/machinery/light/directional/north, /obj/structure/disposalpipe/segment{ @@ -69638,12 +69597,6 @@ /obj/structure/closet/radiation, /turf/open/floor/plating, /area/station/engineering/atmos) -"nBp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/drone_dispenser/preloaded, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/science/research/abandoned) "nBu" = ( /obj/structure/cable, /obj/machinery/duct, @@ -69716,6 +69669,18 @@ /obj/item/radio/intercom/directional/east, /turf/open/floor/carpet, /area/station/medical/patients_rooms) +"nBW" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "qmprivacy"; + name = "Quartermaster's Privacy Shutters" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/cargo/quartermaster) "nBY" = ( /obj/structure/flora/bush/reed{ pixel_y = 8 @@ -70089,14 +70054,6 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/iron, /area/station/hallway/primary/starboard) -"nFV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/gary, -/turf/open/floor/plating, -/area/station/maintenance/clown_chamber) "nFX" = ( /obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, @@ -70650,6 +70607,25 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/iron/dark, /area/station/security/brig) +"nLg" = ( +/obj/machinery/button/door/directional/west{ + id = "QMdoor"; + name = "Door lock"; + normaldoorcontrol = 1; + pixel_x = -32; + pixel_y = -6; + req_access = list("qm"); + specialfunctions = 4 + }, +/obj/machinery/button/door{ + id = "qmprivacy"; + name = "Privacy Control"; + pixel_x = -32; + pixel_y = 7; + req_access = list("qm") + }, +/turf/open/floor/wood/parquet, +/area/station/cargo/quartermaster) "nLh" = ( /obj/machinery/atmospherics/components/binary/pump/on{ dir = 1; @@ -72272,6 +72248,12 @@ /obj/machinery/newscaster/directional/north, /turf/open/floor/carpet, /area/station/security/detectives_office) +"obY" = ( +/obj/structure/flora/bush/jungle/c, +/obj/structure/flora/bush/flowers_pp/style_2, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/grass, +/area/station/hallway/primary/upper) "oci" = ( /obj/effect/turf_decal/trimline/red/filled/corner{ color = "#DE3A3A"; @@ -72605,6 +72587,14 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/central/fore) +"ofh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/gary, +/turf/open/floor/eighties, +/area/station/maintenance/abandon_arcade) "ofm" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -73208,10 +73198,6 @@ /obj/item/kirbyplants/organic/plant21, /turf/open/floor/iron, /area/station/service/chapel) -"okm" = ( -/obj/structure/decorative/shelf/alcohol_assortment, -/turf/open/floor/wood/parquet, -/area/station/cargo/quartermaster) "okq" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -74356,6 +74342,9 @@ /obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/station/maintenance/department/security/greater) +"ovy" = ( +/turf/closed/wall, +/area/station/cargo/quartermaster) "ovC" = ( /obj/machinery/growing/soil, /turf/open/floor/grass, @@ -77325,28 +77314,6 @@ }, /turf/open/floor/iron/dark, /area/station/maintenance/disposal/incinerator) -"oYQ" = ( -/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/wood/parquet, -/area/station/cargo/quartermaster) "oYT" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -77877,6 +77844,12 @@ /obj/item/storage/crayons, /turf/open/floor/iron, /area/station/commons/fitness/recreation) +"pew" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/stool/bar/directional/north, +/obj/effect/landmark/start/gary, +/turf/open/floor/carpet, +/area/station/maintenance/rus_gambling) "peD" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/tile/bar/opposingcorners, @@ -78242,12 +78215,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/station/common/wrestling/arena) -"pit" = ( -/obj/structure/flora/bush/jungle/c, -/obj/structure/flora/bush/flowers_pp/style_2, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/grass, -/area/station/hallway/primary/upper) "piw" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 6 @@ -78909,18 +78876,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/engineering/transit_tube) -"ppK" = ( -/obj/effect/turf_decal/siding/wood/corner{ - dir = 4 - }, -/obj/machinery/camera/directional/south{ - c_tag = "Cargo - Quartermaster's office"; - dir = 1 - }, -/obj/structure/table/wood, -/obj/item/modular_computer/laptop, -/turf/open/floor/wood/parquet, -/area/station/cargo/quartermaster) "ppP" = ( /obj/effect/turf_decal/stripes{ dir = 4 @@ -80083,14 +80038,6 @@ /obj/machinery/atm/directional/south, /turf/open/floor/iron/white, /area/station/science) -"pAL" = ( -/obj/machinery/photocopier, -/obj/effect/turf_decal/bot, -/obj/structure/noticeboard/qm{ - pixel_y = 32 - }, -/turf/open/floor/wood/parquet, -/area/station/cargo/quartermaster) "pAO" = ( /obj/structure/chair/office{ dir = 8 @@ -81755,6 +81702,44 @@ /obj/machinery/duct, /turf/open/floor/plating, /area/station/maintenance/port/fore) +"pSL" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/item/paper_bin{ + pixel_x = -12; + pixel_y = 3 + }, +/obj/item/pen/fourcolor{ + pixel_x = -12; + pixel_y = 5 + }, +/obj/item/hand_labeler{ + pixel_y = 17 + }, +/obj/item/computer_disk/quartermaster{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/item/computer_disk/quartermaster{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/item/computer_disk/quartermaster{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/item/flashlight/lamp/green{ + pixel_y = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/wood/parquet, +/area/station/cargo/quartermaster) "pSM" = ( /obj/machinery/power/shuttle_engine/heater{ dir = 1 @@ -83481,12 +83466,6 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plating, /area/station/maintenance/pool_maintenance) -"qkT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/popcorn, -/obj/effect/landmark/start/gary, -/turf/open/floor/plating, -/area/station/maintenance/abandon_art_studio) "qkW" = ( /obj/effect/turf_decal/stripes/end{ dir = 4 @@ -84098,6 +84077,19 @@ /obj/structure/grille, /turf/open/floor/plating, /area/station/maintenance/fore/upper) +"qrq" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/door/airlock/mining{ + name = "Deliveries" + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/qm, +/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, +/turf/open/floor/wood/parquet, +/area/station/cargo/quartermaster) "qru" = ( /obj/structure/rack, /obj/item/stack/cable_coil{ @@ -85420,12 +85412,6 @@ }, /turf/open/floor/iron/white, /area/station/medical/medbay/central) -"qDe" = ( -/obj/structure/flora/bush/jungle/a/style_2, -/obj/structure/flora/bush/flowers_yw/style_3, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/grass, -/area/station/hallway/primary/upper) "qDf" = ( /obj/effect/turf_decal/siding/thinplating/dark{ dir = 1 @@ -85755,14 +85741,6 @@ /obj/structure/flora/bush/lavendergrass, /turf/open/floor/grass, /area/station/service/hydroponics) -"qGh" = ( -/obj/structure/flora/bush/sparsegrass{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/structure/reagent_dispensers/watertank/high, -/turf/open/floor/grass, -/area/station/security/prison/garden) "qGm" = ( /obj/effect/turf_decal/bot_white, /obj/structure/cable, @@ -85967,6 +85945,14 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/upper) +"qIq" = ( +/obj/structure/flora/bush/sparsegrass{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/structure/reagent_dispensers/watertank/high, +/turf/open/floor/grass, +/area/station/security/prison/garden) "qIs" = ( /turf/closed/wall/r_wall, /area/station/common/arcade) @@ -86172,6 +86158,22 @@ /obj/structure/drain, /turf/open/floor/iron/checker, /area/station/science/ordnance) +"qKb" = ( +/obj/structure/table/wood, +/obj/item/clipboard{ + pixel_y = 19 + }, +/obj/item/toy/figure/qm{ + pixel_y = 18 + }, +/obj/machinery/light/directional/west, +/obj/machinery/fax{ + fax_name = "Quartermaster's Office"; + name = "Quartermaster's Fax Machine"; + pixel_y = 3 + }, +/turf/open/floor/wood/parquet, +/area/station/cargo/quartermaster) "qKp" = ( /obj/structure/railing{ dir = 8 @@ -86268,6 +86270,12 @@ /obj/machinery/vending/medical, /turf/open/floor/iron, /area/station/medical/storage) +"qLP" = ( +/obj/structure/flora/bush/jungle/b, +/obj/structure/flora/bush/flowers_br, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/grass, +/area/station/hallway/primary/upper) "qLQ" = ( /obj/effect/turf_decal/bot_white/left, /obj/structure/closet/crate/hydroponics, @@ -87804,6 +87812,9 @@ initial_gas_mix = "TEMP=2.7" }, /area/station/science/ordnance/bomb) +"raX" = ( +/turf/closed/wall/r_wall, +/area/station/cargo/quartermaster) "rba" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/siding/thinplating_new/dark{ @@ -88590,6 +88601,10 @@ /obj/effect/landmark/start/assistant, /turf/open/floor/stone, /area/station/hallway/primary/central) +"rim" = ( +/obj/structure/dresser, +/turf/open/floor/carpet, +/area/station/cargo/quartermaster) "rix" = ( /obj/structure/table, /obj/item/storage/medkit/regular, @@ -90042,6 +90057,12 @@ }, /turf/open/floor/wood/large, /area/station/science/auxlab/firing_range) +"rwR" = ( +/obj/structure/flora/bush/jungle/c/style_3, +/obj/structure/flora/bush/flowers_pp/style_3, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/grass, +/area/station/hallway/primary/upper) "rwS" = ( /obj/structure/chair/sofa/bench/left{ dir = 4; @@ -90857,12 +90878,6 @@ /obj/machinery/camera/autoname/directional/north, /turf/open/floor/iron/dark, /area/station/ai_monitored/turret_protected/aisat_interior) -"rEB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/gary/rare, -/turf/open/floor/iron/white, -/area/station/medical/aslyum) "rED" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 8 @@ -91192,10 +91207,6 @@ /obj/effect/decal/cleanable/blood/old, /turf/open/floor/mineral/plastitanium, /area/station/maintenance/cult_chapel_maint) -"rHz" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/carpet, -/area/station/cargo/quartermaster) "rHB" = ( /obj/item/trash/chips, /turf/open/floor/plating, @@ -91398,6 +91409,12 @@ /obj/machinery/light_switch/directional/south, /turf/open/floor/carpet/blue, /area/station/service/lawoffice) +"rJl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/popcorn, +/obj/effect/landmark/start/gary, +/turf/open/floor/plating, +/area/station/maintenance/abandon_art_studio) "rJm" = ( /obj/effect/turf_decal/tile/yellow/half/contrasted, /obj/machinery/newscaster/directional/south, @@ -91439,9 +91456,6 @@ }, /turf/open/floor/iron/dark/side, /area/station/hallway/primary/central) -"rJF" = ( -/turf/closed/wall/r_wall, -/area/station/cargo/quartermaster) "rJL" = ( /obj/structure/table/wood, /obj/item/food/grown/harebell, @@ -91793,6 +91807,15 @@ }, /turf/open/floor/plating, /area/station/maintenance/port/upper) +"rNW" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/wood/parquet, +/area/station/cargo/quartermaster) "rNY" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -91889,6 +91912,10 @@ /obj/item/coffee_cartridge, /turf/open/floor/iron, /area/station/hallway/secondary/service) +"rPj" = ( +/obj/effect/landmark/start/gary, +/turf/open/floor/iron, +/area/station/hallway/secondary/construction) "rPm" = ( /obj/machinery/shower/directional/west, /obj/structure/drain, @@ -92317,6 +92344,16 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/department/engineering/engine_aft_port) +"rUn" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/wood/parquet, +/area/station/cargo/quartermaster) "rUt" = ( /obj/structure/disposalpipe/segment, /obj/machinery/duct, @@ -93430,6 +93467,13 @@ /obj/structure/chair/wood, /turf/open/floor/wood, /area/station/service/cafeteria) +"sfP" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/obj/effect/landmark/start/quartermaster, +/turf/open/floor/wood/parquet, +/area/station/cargo/quartermaster) "sfS" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/spawner/random/structure/steam_vent, @@ -93482,12 +93526,6 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/station/security/checkpoint/customs/auxiliary) -"sgt" = ( -/obj/structure/flora/bush/jungle/b, -/obj/structure/flora/bush/flowers_br, -/obj/structure/window/reinforced/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{ @@ -94376,6 +94414,14 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/department/science/lower) +"sqK" = ( +/obj/machinery/duct, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 8 + }, +/obj/effect/landmark/start/gary/rare, +/turf/open/floor/iron/cafeteria, +/area/station/commons/locker) "sqL" = ( /obj/machinery/airalarm/directional/west, /obj/machinery/light_switch/directional/south, @@ -95393,6 +95439,23 @@ dir = 8 }, /area/station/command/gateway) +"sAn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/firedoor, +/obj/machinery/button/door/directional/north{ + id = "Portbowmaints"; + name = "Shutter control"; + pixel_x = -24; + pixel_y = 0 + }, +/obj/machinery/door/poddoor/shutters{ + id = "Portbowmaints"; + name = "Port Bow Maintenance" + }, +/turf/open/floor/iron/stairs/left{ + dir = 1 + }, +/area/station/maintenance/port/upper) "sAs" = ( /obj/effect/turf_decal/delivery/white, /obj/machinery/status_display/supply{ @@ -95436,6 +95499,12 @@ }, /turf/open/floor/iron, /area/station/commons/fitness) +"sAJ" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/gary, +/turf/open/floor/carpet/red, +/area/station/service/library/abandoned) "sAW" = ( /obj/structure/railing{ dir = 8 @@ -97027,6 +97096,22 @@ "sPI" = ( /turf/open/floor/grass, /area/station/service/hydroponics/garden/abandoned) +"sPM" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/cup/glass/bottle/fernet{ + pixel_x = -8; + pixel_y = 14 + }, +/obj/item/reagent_containers/cup/glass/bottle/lizardwine{ + pixel_x = 7; + pixel_y = 6 + }, +/obj/item/reagent_containers/cup/glass/bottle/champagne{ + pixel_y = 11 + }, +/obj/machinery/digital_clock/directional/north, +/turf/open/floor/wood/parquet, +/area/station/cargo/quartermaster) "sPS" = ( /obj/effect/turf_decal/siding/wood, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -97439,6 +97524,18 @@ /obj/machinery/duct, /turf/open/floor/iron, /area/station/commons/dorms) +"sUv" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "qmprivacy"; + name = "Quartermaster's Privacy Shutters" + }, +/obj/structure/disposalpipe/trunk/multiz{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/cargo/quartermaster) "sUJ" = ( /obj/structure/window/spawner/directional/east, /obj/effect/turf_decal/delivery, @@ -98311,14 +98408,6 @@ }, /turf/open/floor/plating, /area/station/hallway/secondary/entry) -"tbD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/cable, -/turf/open/floor/wood/parquet, -/area/station/cargo/quartermaster) "tbH" = ( /obj/structure/chair/pew/left{ dir = 4 @@ -98920,14 +99009,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/engineering/transit_tube) -"thb" = ( -/obj/structure/chair/wood/wings{ - dir = 8 - }, -/obj/effect/landmark/start/librarian, -/obj/effect/landmark/start/gary/rare, -/turf/open/floor/carpet, -/area/station/service/library/lounge) "thj" = ( /obj/effect/spawner/random/structure/table_or_rack, /obj/effect/spawner/random/maintenance, @@ -99582,14 +99663,6 @@ /obj/effect/spawner/random/trash/moisture, /turf/open/floor/plating, /area/station/maintenance/port/upper) -"tov" = ( -/obj/machinery/duct, -/obj/effect/turf_decal/tile/blue/opposingcorners{ - dir = 8 - }, -/obj/effect/landmark/start/gary/rare, -/turf/open/floor/iron/cafeteria, -/area/station/commons/locker) "toB" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -101826,22 +101899,6 @@ /obj/machinery/atmospherics/components/unary/portables_connector/visible, /turf/open/floor/iron, /area/station/engineering/atmos/test_chambers) -"tKU" = ( -/obj/structure/table/wood, -/obj/item/clipboard{ - pixel_y = 19 - }, -/obj/item/toy/figure/qm{ - pixel_y = 18 - }, -/obj/machinery/light/directional/west, -/obj/machinery/fax{ - fax_name = "Quartermaster's Office"; - name = "Quartermaster's Fax Machine"; - pixel_y = 3 - }, -/turf/open/floor/wood/parquet, -/area/station/cargo/quartermaster) "tKX" = ( /obj/item/clothing/head/utility/welding, /turf/open/floor/plating, @@ -102441,16 +102498,6 @@ /obj/effect/spawner/random/contraband/permabrig_gear, /turf/open/floor/plating, /area/station/security/prison/mess) -"tQe" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/wood/parquet, -/area/station/cargo/quartermaster) "tQg" = ( /obj/effect/turf_decal/vg_decals/numbers/four, /obj/effect/landmark/start/prisoner, @@ -102607,6 +102654,19 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/engineering/atmos/hfr_room) +"tRo" = ( +/obj/structure/table/wood, +/obj/structure/closet/crate/cardboard{ + pixel_y = 5 + }, +/obj/item/clothing/shoes/jackboots/timbs, +/obj/item/clothing/suit/brownfurrich/public, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/wood/parquet, +/area/station/cargo/quartermaster) "tRu" = ( /obj/structure/table, /obj/item/paper_bin{ @@ -102758,15 +102818,15 @@ dir = 8 }, /area/station/hallway/secondary/service) -"tTf" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/turf/open/floor/wood/parquet, -/area/station/cargo/quartermaster) "tTg" = ( /turf/closed/wall/mineral/wood, /area/station/common/pool/sauna) +"tTk" = ( +/obj/structure/flora/bush/jungle, +/obj/structure/flora/bush/flowers_yw/style_3, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/grass, +/area/station/hallway/primary/upper) "tTm" = ( /obj/effect/turf_decal/stripes{ dir = 8 @@ -103412,6 +103472,14 @@ }, /turf/open/floor/iron/dark, /area/station/hallway/secondary/command) +"uaq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/gary, +/turf/open/floor/plating, +/area/station/maintenance/clown_chamber) "uaL" = ( /obj/machinery/light/directional/west, /turf/open/floor/iron, @@ -104468,16 +104536,6 @@ /obj/effect/landmark/start/librarian, /turf/open/floor/carpet, /area/station/service/library/lounge) -"ukH" = ( -/obj/structure/sign/directions/command{ - dir = 1; - pixel_y = 3 - }, -/obj/structure/sign/directions/science{ - pixel_y = -3 - }, -/turf/closed/wall/r_wall, -/area/station/hallway/primary/upper) "ukI" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -105905,15 +105963,6 @@ }, /turf/open/floor/plating, /area/station/medical/pharmacy) -"uyB" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/wood/parquet, -/area/station/cargo/quartermaster) "uyC" = ( /turf/open/floor/engine{ name = "Holodeck Projector Floor" @@ -106582,6 +106631,10 @@ dir = 8 }, /area/station/security/prison) +"uED" = ( +/obj/effect/landmark/start/gary/rare, +/turf/open/floor/cult, +/area/station/maintenance/cult_chapel_maint) "uEE" = ( /obj/machinery/door/firedoor, /obj/effect/turf_decal/tile/yellow/half/contrasted{ @@ -107174,12 +107227,6 @@ /obj/machinery/newscaster/directional/east, /turf/open/floor/wood, /area/station/hallway/secondary/service) -"uKB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair/stool/bar/directional/north, -/obj/effect/landmark/start/gary, -/turf/open/floor/carpet, -/area/station/maintenance/rus_gambling) "uKG" = ( /obj/effect/landmark/event_spawn, /turf/open/floor/iron, @@ -107223,12 +107270,6 @@ /obj/structure/flora/bush/leafy, /turf/open/floor/grass, /area/station/hallway/primary/central) -"uLt" = ( -/obj/machinery/duct, -/obj/effect/spawner/random/trash/mess, -/obj/effect/landmark/start/gary, -/turf/open/floor/carpet, -/area/station/commons/dorms/vacantroom) "uLA" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, @@ -108041,14 +108082,6 @@ /obj/effect/spawner/random/medical/memeorgans, /turf/open/floor/plating, /area/station/maintenance/abandon_surgery) -"uTO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/gary, -/turf/open/floor/eighties, -/area/station/maintenance/abandon_arcade) "uTQ" = ( /obj/effect/turf_decal/trimline/blue/line{ dir = 10 @@ -108838,6 +108871,12 @@ dir = 4 }, /area/station/science/xenobiology) +"vcx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/station/cargo/quartermaster) "vcz" = ( /obj/structure/extinguisher_cabinet/directional/south, /obj/structure/chair/comfy/brown{ @@ -109320,6 +109359,12 @@ /obj/machinery/holopad, /turf/open/floor/iron/white, /area/station/medical/medbay/lobby) +"vhw" = ( +/obj/structure/flora/bush/jungle/a, +/obj/structure/flora/bush/flowers_br/style_3, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/grass, +/area/station/hallway/primary/upper) "vhy" = ( /obj/structure/table, /obj/effect/decal/cleanable/dirt, @@ -109768,15 +109813,6 @@ /obj/structure/table, /turf/open/floor/iron/dark, /area/station/commons/dorms) -"vlp" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - dir = 4; - id = "qmprivacy"; - name = "Quartermaster's Privacy Shutters" - }, -/turf/open/floor/plating, -/area/station/cargo/quartermaster) "vlu" = ( /obj/structure/table/reinforced, /obj/effect/turf_decal/siding/wood, @@ -113644,25 +113680,6 @@ /obj/machinery/light/directional/east, /turf/open/floor/engine, /area/station/engineering/supermatter/room) -"vWp" = ( -/obj/item/trash/syndi_cakes, -/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/broken_floor, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters{ - id = "Starboardbowmaints"; - name = "Starboard Bow Maintenance" - }, -/obj/machinery/button/door/directional/north{ - id = "Starboardbowmaints"; - name = "Shutter control"; - pixel_x = 24; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/station/maintenance/fore/upper) "vWN" = ( /obj/structure/sign/warning/vacuum/external/directional/south, /turf/open/floor/iron, @@ -114078,6 +114095,12 @@ dir = 1 }, /area/station/hallway/primary/central/fore) +"wbm" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/wood/parquet, +/area/station/cargo/quartermaster) "wbq" = ( /obj/machinery/atmospherics/pipe/smart/simple/green/visible{ dir = 4 @@ -114386,12 +114409,6 @@ }, /turf/open/floor/iron, /area/station/maintenance/starboard/fore) -"wdN" = ( -/obj/structure/flora/bush/jungle/b/style_2, -/obj/structure/flora/bush/flowers_br/style_3, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/grass, -/area/station/hallway/primary/upper) "wdS" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 @@ -114523,18 +114540,6 @@ /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating, /area/station/science/research/abandoned) -"weQ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - dir = 4; - id = "qmprivacy"; - name = "Quartermaster's Privacy Shutters" - }, -/obj/structure/disposalpipe/trunk/multiz{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/cargo/quartermaster) "weT" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -114595,25 +114600,6 @@ /obj/effect/mapping_helpers/airlock/access/all/engineering/external, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"wfp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/mess, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor, -/obj/machinery/button/door/directional/north{ - id = "Starboardbowmaints"; - name = "Shutter control"; - pixel_x = 24; - pixel_y = 0 - }, -/obj/machinery/door/poddoor/shutters{ - id = "Starboardbowmaints"; - name = "Starboard Bow Maintenance" - }, -/turf/open/floor/plating, -/area/station/maintenance/fore/upper) "wfr" = ( /obj/effect/spawner/liquids_spawner{ reagent_list = list(/datum/reagent/water=600) @@ -114709,12 +114695,6 @@ dir = 4 }, /area/station/hallway/primary/central/aft) -"wfY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/station/cargo/quartermaster) "wge" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 @@ -114991,6 +114971,16 @@ }, /turf/open/floor/wood/parquet, /area/station/common/tailoring) +"wiC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/duct, +/obj/structure/cable, +/obj/effect/landmark/start/gary, +/turf/open/floor/wood, +/area/station/commons/dorms/vacantroom) "wiF" = ( /obj/effect/turf_decal/bot, /obj/effect/turf_decal/stripes/corner{ @@ -115102,9 +115092,6 @@ }, /turf/open/floor/wood, /area/station/command/captain_dining) -"wjW" = ( -/turf/open/floor/wood/parquet, -/area/station/cargo/quartermaster) "wjY" = ( /obj/structure/rack, /obj/effect/turf_decal/bot, @@ -115831,6 +115818,15 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron/dark, /area/station/hallway/secondary/command) +"wro" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 1 + }, +/obj/machinery/computer/cargo{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/quartermaster) "wrq" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /obj/machinery/button/door/directional/north{ @@ -116081,12 +116077,6 @@ /obj/effect/mapping_helpers/burnt_floor, /turf/open/floor/plating, /area/station/maintenance/fore/upper) -"wsT" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/wood/parquet, -/area/station/cargo/quartermaster) "wsU" = ( /obj/effect/spawner/random/engineering/tracking_beacon, /turf/open/floor/plating/reinforced{ @@ -116369,6 +116359,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/security/brig) +"wvs" = ( +/obj/structure/bed/dogbed, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood/parquet, +/area/station/cargo/quartermaster) "wvt" = ( /obj/structure/reagent_dispensers/watertank, /obj/item/reagent_containers/cup/bucket, @@ -116907,6 +116904,10 @@ }, /turf/open/floor/iron, /area/station/commons/dorms) +"wBb" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood/parquet, +/area/station/cargo/quartermaster) "wBn" = ( /obj/machinery/atmospherics/components/binary/pump{ name = "Port to Filter" @@ -117802,6 +117803,15 @@ /obj/machinery/light/directional/west, /turf/open/floor/carpet, /area/station/science/ordnance/office) +"wJJ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/effect/landmark/start/gary/uncommon, +/turf/open/floor/stone, +/area/station/service/forge) "wJQ" = ( /obj/structure/chair/office{ dir = 8 @@ -117908,13 +117918,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/station/service/hydroponics) -"wLK" = ( -/obj/structure/chair/office, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/effect/landmark/start/gary, -/turf/open/floor/wood, -/area/station/security/detectives_office/private_investigators_office) "wLM" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -118328,10 +118331,6 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/central) -"wPC" = ( -/obj/effect/landmark/start/quartermaster, -/turf/open/floor/wood/parquet, -/area/station/cargo/quartermaster) "wPG" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/trash/garbage, @@ -118878,13 +118877,6 @@ /obj/structure/flora/rock/pile, /turf/open/floor/grass, /area/station/hallway/primary/central) -"wVh" = ( -/obj/structure/closet/secure_closet/quartermaster, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/cargo/quartermaster) "wVn" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -118957,12 +118949,6 @@ /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/station/service/theater) -"wWf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/gary, -/turf/open/floor/iron/cafeteria, -/area/station/maintenance/abandon_diner) "wWi" = ( /obj/machinery/power/shuttle_engine/heater{ dir = 4 @@ -119750,6 +119736,14 @@ /obj/item/radio/intercom/directional/south, /turf/open/floor/circuit, /area/station/command/gateway) +"xeB" = ( +/obj/machinery/photocopier, +/obj/effect/turf_decal/bot, +/obj/structure/noticeboard/qm{ + pixel_y = 32 + }, +/turf/open/floor/wood/parquet, +/area/station/cargo/quartermaster) "xeE" = ( /obj/item/trash/syndi_cakes, /obj/structure/cable, @@ -119911,11 +119905,6 @@ /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/station/service/cafeteria) -"xgk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/gary, -/turf/open/floor/plating, -/area/station/maintenance/aft/upper) "xgr" = ( /obj/structure/chair/stool, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -120072,6 +120061,12 @@ /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating, /area/station/maintenance/department/medical/central) +"xhM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/quartermaster) "xhZ" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -120580,10 +120575,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) -"xnA" = ( -/obj/effect/landmark/start/gary/rare, -/turf/open/floor/cult, -/area/station/maintenance/cult_chapel_maint) "xnC" = ( /obj/structure/railing{ dir = 8 @@ -121206,22 +121197,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/service/chapel/funeral) -"xtv" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/cup/glass/bottle/fernet{ - pixel_x = -8; - pixel_y = 14 - }, -/obj/item/reagent_containers/cup/glass/bottle/lizardwine{ - pixel_x = 7; - pixel_y = 6 - }, -/obj/item/reagent_containers/cup/glass/bottle/champagne{ - pixel_y = 11 - }, -/obj/machinery/digital_clock/directional/north, -/turf/open/floor/wood/parquet, -/area/station/cargo/quartermaster) "xtB" = ( /obj/structure/chair/pew/left{ dir = 1; @@ -121848,6 +121823,15 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/white, /area/station/science/research) +"xAn" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/door/airlock/mining{ + name = "Deliveries" + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/qm, +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet, +/area/station/cargo/quartermaster) "xAz" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -122469,12 +122453,6 @@ }, /turf/open/floor/iron, /area/station/commons/dorms) -"xGr" = ( -/obj/machinery/light/small/directional/north, -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/start/quartermaster, -/turf/open/floor/carpet, -/area/station/cargo/quartermaster) "xGu" = ( /obj/structure/chair/office, /obj/structure/window/spawner/directional/west, @@ -122660,6 +122638,18 @@ /obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/station/maintenance/disposal) +"xIz" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/machinery/camera/directional/south{ + c_tag = "Cargo - Quartermaster's office"; + dir = 1 + }, +/obj/structure/table/wood, +/obj/item/modular_computer/laptop, +/turf/open/floor/wood/parquet, +/area/station/cargo/quartermaster) "xIB" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/trash/mopbucket, @@ -122821,6 +122811,16 @@ }, /turf/open/floor/wood/parquet, /area/station/command/gateway) +"xKm" = ( +/obj/structure/sign/directions/command{ + dir = 1; + pixel_y = 3 + }, +/obj/structure/sign/directions/science{ + pixel_y = -3 + }, +/turf/closed/wall/r_wall, +/area/station/hallway/primary/upper) "xKr" = ( /obj/structure/table, /obj/item/paper_bin{ @@ -123135,6 +123135,12 @@ /obj/machinery/light/directional/north, /turf/open/floor/iron, /area/station/engineering/storage/tech) +"xNp" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/effect/landmark/start/quartermaster, +/turf/open/floor/wood/parquet, +/area/station/cargo/quartermaster) "xNy" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/liquids_spawner, @@ -123871,12 +123877,6 @@ }, /turf/open/floor/iron, /area/station/command/bridge) -"xVU" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/turf/open/floor/wood/parquet, -/area/station/cargo/quartermaster) "xVV" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -144370,7 +144370,7 @@ vdX szo khB wsY -uKB +pew sCE oHL mqQ @@ -145340,7 +145340,7 @@ dEa dEa uEt bQL -iZA +aBw ihY pCR aUf @@ -146920,7 +146920,7 @@ gJC kvS tyO qCy -aCe +wJJ oDK xKQ rii @@ -147726,7 +147726,7 @@ jFf qMb uns gib -wLK +mLV nLn qjL nEA @@ -148735,7 +148735,7 @@ tKM uDf tFG tyB -jjN +rPj hLJ tyB fWT @@ -149757,7 +149757,7 @@ tej gcU lmf mFM -gFQ +cmE jQA jQA uDf @@ -150755,7 +150755,7 @@ pWa lOb eiM ukF -thb +jhc ocy efJ kQJ @@ -151531,7 +151531,7 @@ qlY qlY sPz tWx -cxO +mxr xFB wjx snu @@ -151802,7 +151802,7 @@ tvB oPW hoT qon -aBl +meH hhb csC uZH @@ -154331,7 +154331,7 @@ aGF grq uDg xvc -lBX +lYB kOW pjw pjw @@ -160550,7 +160550,7 @@ pEc cwD iWN uAV -gtW +mxu uAV lmE iWN @@ -161044,12 +161044,12 @@ mVk mVk mVk ueR -rJF -rJF -rJF -wfY -rJF -rJF +raX +raX +raX +vcx +raX +raX hmV vqa vqa @@ -161301,12 +161301,12 @@ mVk kVb gIS gIS -rJF -xtv -tKU -tbD -iQW -cDG +raX +sPM +qKb +dNr +biD +wro hmV hHn jrw @@ -161558,12 +161558,12 @@ eBe yde azk azk -rJF -ppK -wjW -kVe -wPC -dvI +raX +xIz +fpe +lPh +jUq +mEK hmV roO sNu @@ -161810,17 +161810,17 @@ mkM wsl tAt gIS -rJF -rJF -rJF -rJF -pAL -ier -xVU -nAy -hUu -wjW -hpv +raX +raX +raX +raX +xeB +nLg +hAk +sfP +tRo +fpe +cJQ hmV knm oQD @@ -162067,17 +162067,17 @@ eTy aTu npf hfr -rJF -wVh -fiG -iTO -jxK -nsx -jZU -oYQ -knG -akd -rJF +raX +lVl +xhM +ovy +ngF +wBb +heD +cen +pSL +bJM +raX hmV vqa vqa @@ -162324,17 +162324,17 @@ fsS oQw tAt oUr -dYV -xGr -rHz -gGm -nsx -wsT -tTf -mYp -tQe -htj -rJF +act +alN +bCR +xAn +wBb +wbm +ehv +xNp +rUn +cfZ +raX bHe gSu gSA @@ -162581,18 +162581,18 @@ iru cRO tAt eye -rJF -fdB -hTx -iTO -okm -hgI -mdB -gpf -gwg -uyB -gia -giW +raX +bZx +rim +ovy +fxQ +wvs +auf +hHm +rNW +fvd +qrq +mgb mvF foY uVh @@ -162838,17 +162838,17 @@ hZB gvR eGI kVb -rJF -rJF -rJF -rJF -vlp -lXx -lXx -weQ -vlp -rJF -rJF +raX +raX +raX +raX +lhn +nBW +nBW +sUv +lhn +raX +raX fOp pYr cZV @@ -164603,7 +164603,7 @@ xhv tCi tgb gjd -cZI +bPR hdS fRA xPk @@ -164828,7 +164828,7 @@ jEz eCw kkM fzZ -qGh +qIq aFR wpP vTa @@ -165922,7 +165922,7 @@ pMQ eGW nKK eFn -eSI +hGg oTl mXK ipg @@ -167181,7 +167181,7 @@ dVy rtr iTN nli -kcU +cns kfl iTN sfw @@ -209393,7 +209393,7 @@ soz uAj mAK ibw -nlV +sAJ mtu iCe wpF @@ -211378,7 +211378,7 @@ lEO lxt hZy oIe -tov +sqK gyh jyY mqj @@ -211412,7 +211412,7 @@ drQ xPd fHi reO -uLt +fGg soC eVg hnW @@ -212440,7 +212440,7 @@ fXT lGF fHi xbC -dzr +wiC czZ eVg kmc @@ -212900,7 +212900,7 @@ qhz ybT ybT oIL -jzZ +sAn gPC bZe gPC @@ -213166,7 +213166,7 @@ jQY fnc dEf hrJ -eul +dAw cXM kTV kTV @@ -213768,7 +213768,7 @@ lec sJw vzq bZD -aXz +dfo bqc ovC aDV @@ -216600,7 +216600,7 @@ vIq smt pTE gDk -wWf +lGg dHC cDP fne @@ -216876,7 +216876,7 @@ tcq sba sXD tpk -cBG +eVJ cct akA soz @@ -217894,7 +217894,7 @@ tfJ pjf tUm bgI -uTO +ofh wbv mrX kCj @@ -218012,7 +218012,7 @@ ulI kNf pcs mYx -nBp +aTf rof bta bCe @@ -218415,7 +218415,7 @@ kCj jKs gVx lWr -xgk +lZi tpk urs iVF @@ -221943,11 +221943,11 @@ pQF tYT tYT tYT -mzu -mVh -iMf -gBx -ukH +lei +jDl +jvl +tTk +xKm qJk qJk lcX @@ -222200,11 +222200,11 @@ eRh cfl cfl cfl -bwW +hWd wfr cMo tiA -mzu +lei coT gST lcX @@ -222457,11 +222457,11 @@ eRh cfl eLB cfl -kER +laH rko wfr xtV -jJh +rwR cfl cfl gyk @@ -222714,11 +222714,11 @@ eRh mkE wMo wMo -hwe +cGG pgY xVz xLg -sgt +qLP cfl cfl lcX @@ -222971,11 +222971,11 @@ eRh cfl uGh cfl -wdN +muJ oqO mPK xtV -qDe +ePR cfl cfl gyk @@ -223228,11 +223228,11 @@ eRh cfl cfl cfl -pit +obY mMJ xtV eUH -mzu +lei ugc uol lcX @@ -223485,11 +223485,11 @@ pQF akt akt akt -mzu -iWF -knr -dKI -ukH +lei +fsX +vhw +dqh +xKm wiK wiK lcX @@ -228392,7 +228392,7 @@ aQY dsQ dRf bwO -rEB +dNx leE vYX vYX @@ -231167,7 +231167,7 @@ gTZ goM ojU qOK -qkT +rJl gta dNp xiB @@ -231493,7 +231493,7 @@ buD psl nNt ukK -bmS +bOo iki sus ulx @@ -231924,7 +231924,7 @@ hrN vzh omu hLk -lRb +aoq arj lKb vQQ @@ -232517,7 +232517,7 @@ kPf kPf qzz gyV -nFV +uaq rjO jHG xrT @@ -233048,7 +233048,7 @@ jVg sKy myL wrz -xnA +uED cSf kLR sdx @@ -233217,7 +233217,7 @@ mjZ vyd wql mdY -izG +jVS cmf ufd cHh @@ -233549,13 +233549,13 @@ usu gLc kWO gLc -mba +lLF gLc -mba +lLF gLc -mba +lLF gLc -mba +lLF kta xxS hXr @@ -233802,17 +233802,17 @@ usu nPy usu gLc -mba +lLF gLc kWO gLc -mba +lLF gLc kWO gLc kWO gLc -mba +lLF cwF xxS ydM @@ -233966,13 +233966,13 @@ nao rHT cKJ rHT -wfp +iiy rUd xiE rHT rHT afm -vWp +bNE qPC xbB exN @@ -234061,13 +234061,13 @@ klU gLc klU gLc -mba +lLF gLc -mba +lLF gLc kWO gLc -mba +lLF gLc kWO cwF @@ -234318,13 +234318,13 @@ klU mQV klU gLc -mba +lLF gLc -mba +lLF gLc kWO gLc -mba +lLF gLc kWO kta @@ -234768,7 +234768,7 @@ eDF pMa fdF yda -mxX +ikF sBF syc ssb @@ -234832,15 +234832,15 @@ klU mQV gTL gLc -mba +lLF loJ -mba +lLF gLc -mba +lLF gLc kWO gLc -mba +lLF kta kta kta @@ -235089,15 +235089,15 @@ klU gLc klU gLc -mba +lLF fKh kWO gLc -mba +lLF gLc kWO gLc -mba +lLF gLc gLc cwF @@ -235346,13 +235346,13 @@ klU gLc klU gLc -mba +lLF gLc kWO gLc -mba +lLF gLc -mba +lLF gLc kWO gLc diff --git a/_maps/map_files/BoxStation/BoxStation.dmm b/_maps/map_files/BoxStation/BoxStation.dmm index c36766348aa8..253b34157f4a 100644 --- a/_maps/map_files/BoxStation/BoxStation.dmm +++ b/_maps/map_files/BoxStation/BoxStation.dmm @@ -516,20 +516,6 @@ /obj/structure/sign/departments/maint/directional/south, /turf/open/floor/iron/dark, /area/station/hallway/secondary/entry) -"ajR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/obj/effect/turf_decal/siding/wood/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/landmark/start/gary/uncommon, -/turf/open/floor/stone, -/area/station/smithing) "ajT" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -1659,11 +1645,6 @@ /obj/machinery/duct, /turf/open/floor/iron/dark, /area/station/medical/morgue) -"aDR" = ( -/obj/effect/landmark/blobstart, -/obj/effect/landmark/start/gary, -/turf/open/floor/wood, -/area/station/maintenance/port/fore) "aDS" = ( /obj/machinery/washing_machine, /obj/machinery/light/small/directional/east, @@ -2609,6 +2590,10 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron/dark, /area/station/maintenance/disposal/incinerator) +"aTt" = ( +/obj/effect/landmark/start/gary, +/turf/open/floor/plating, +/area/station/maintenance/port) "aTv" = ( /obj/structure/chair/stool/directional/south, /obj/machinery/flasher/directional/west{ @@ -4268,6 +4253,11 @@ /obj/effect/landmark/start/paramedic, /turf/open/floor/iron, /area/station/medical/paramedic) +"buH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/effect/landmark/start/gary, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) "buR" = ( /obj/effect/turf_decal/trimline/brown/filled/line, /obj/structure/cable, @@ -4846,6 +4836,16 @@ }, /turf/open/floor/iron/dark, /area/station/commons/vacant_room/commissary) +"bFn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/chair/wood{ + dir = 4 + }, +/obj/effect/landmark/start/gary/rare, +/turf/open/floor/wood, +/area/station/service/library/lounge) "bFv" = ( /obj/machinery/firealarm/directional/north, /obj/machinery/camera/autoname/directional/north, @@ -5909,6 +5909,10 @@ }, /turf/open/floor/grass, /area/station/medical/medbay/central) +"bXe" = ( +/obj/effect/landmark/start/gary, +/turf/open/floor/carpet, +/area/station/maintenance/starboard/fore) "bXo" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -6550,6 +6554,15 @@ dir = 4 }, /area/station/commons/fitness/recreation) +"cgL" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/gibs/old, +/obj/effect/landmark/start/gary, +/turf/open/floor/iron, +/area/station/maintenance/starboard/aft) "cgP" = ( /obj/effect/turf_decal/trimline/green/filled/line, /obj/effect/turf_decal/trimline/green/line{ @@ -8685,11 +8698,6 @@ /obj/machinery/light/small/directional/north, /turf/open/floor/iron/dark, /area/station/cargo/sorting) -"cSu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/gary, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) "cSv" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/turf_decal/stripes/line{ @@ -9015,6 +9023,15 @@ dir = 8 }, /area/station/service/hydroponics/garden) +"cWr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/glass, +/obj/effect/spawner/random/trash/cigbutt, +/obj/item/broken_bottle, +/obj/machinery/duct, +/obj/effect/landmark/start/gary, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft) "cWy" = ( /obj/effect/turf_decal/trimline/dark_blue/filled/line{ dir = 1 @@ -9464,13 +9481,6 @@ }, /turf/open/floor/iron, /area/station/science/robotics/lab) -"det" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/landmark/start/gary/rare, -/turf/open/floor/iron/sepia, -/area/station/service/library/artgallery) "deB" = ( /obj/effect/spawner/random/vending/snackvend, /turf/open/floor/iron/dark, @@ -9915,6 +9925,12 @@ /obj/effect/turf_decal/trimline/yellow/line, /turf/open/floor/iron, /area/station/hallway/primary/aft) +"dlz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/duct, +/obj/effect/landmark/start/gary, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft) "dlC" = ( /obj/docking_port/stationary{ dir = 8; @@ -11169,12 +11185,6 @@ }, /turf/open/floor/engine, /area/station/ai_monitored/turret_protected/aisat_interior) -"dIu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/restraints/handcuffs/cable/zipties/used, -/obj/effect/landmark/start/gary, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) "dIE" = ( /obj/effect/turf_decal/tile/dark_blue/fourcorners, /obj/structure/disposalpipe/junction/flip{ @@ -11984,6 +11994,11 @@ /obj/machinery/firealarm/directional/north, /turf/open/floor/iron/dark, /area/station/command/heads_quarters/blueshield) +"dXK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/gary, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft) "dXL" = ( /obj/structure/table, /obj/item/electronics/airlock{ @@ -12142,14 +12157,6 @@ /obj/machinery/duct, /turf/open/floor/iron, /area/station/service/hydroponics) -"dZz" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/start/gary, -/turf/open/floor/iron/dark, -/area/station/maintenance/department/cargo) "dZE" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -16640,11 +16647,6 @@ /obj/item/storage/box/bodybags, /turf/open/floor/iron/white, /area/station/security/medical) -"fCi" = ( -/obj/effect/mapping_helpers/burnt_floor, -/obj/effect/landmark/start/gary/uncommon, -/turf/open/floor/plating, -/area/station/maintenance/department/engine/atmos) "fCw" = ( /obj/effect/spawner/random/structure/table, /obj/effect/spawner/random/entertainment/cigarette_pack, @@ -16833,11 +16835,6 @@ "fFV" = ( /turf/closed/wall, /area/station/solars/port/aft) -"fGf" = ( -/obj/structure/chair/stool/bar/directional/south, -/obj/effect/landmark/start/gary, -/turf/open/floor/carpet/green, -/area/station/maintenance/starboard/aft) "fGh" = ( /obj/structure/sign/warning/test_chamber/directional/north, /obj/effect/decal/cleanable/dirt, @@ -18708,15 +18705,6 @@ dir = 8 }, /area/station/commons/fitness/recreation) -"gmT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/glass, -/obj/effect/spawner/random/trash/cigbutt, -/obj/item/broken_bottle, -/obj/machinery/duct, -/obj/effect/landmark/start/gary, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) "gmU" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 8 @@ -19346,11 +19334,6 @@ dir = 1 }, /area/station/service/hydroponics) -"gwI" = ( -/obj/machinery/duct, -/obj/effect/landmark/start/gary/rare, -/turf/open/floor/iron/showroomfloor, -/area/station/commons/toilet/restrooms) "gwS" = ( /turf/open/floor/iron/dark, /area/station/commons/vacant_room/commissary) @@ -19779,6 +19762,11 @@ }, /turf/open/floor/iron/dark, /area/station/ai_monitored/turret_protected/aisat/foyer) +"gCN" = ( +/obj/structure/chair/stool/bar/directional/south, +/obj/effect/landmark/start/gary, +/turf/open/floor/carpet/green, +/area/station/maintenance/starboard/aft) "gCP" = ( /obj/machinery/space_heater, /turf/open/floor/plating, @@ -21345,6 +21333,11 @@ }, /turf/open/floor/iron/dark, /area/station/hallway/primary/central) +"haV" = ( +/obj/effect/mapping_helpers/burnt_floor, +/obj/effect/landmark/start/gary/uncommon, +/turf/open/floor/plating, +/area/station/maintenance/department/engine/atmos) "hbb" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -22245,6 +22238,14 @@ }, /turf/open/floor/iron/dark, /area/station/security/brig) +"hqX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/landmark/start/gary, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) "hrk" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/trimline/red/filled/line{ @@ -22858,13 +22859,6 @@ /obj/effect/turf_decal/tile/blue/fourcorners, /turf/open/floor/iron/white, /area/station/medical/office) -"hBG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/blobstart, -/obj/machinery/duct, -/obj/effect/landmark/start/gary, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) "hBK" = ( /obj/effect/turf_decal/stripes/box, /obj/machinery/camera/autoname/directional/west, @@ -25347,14 +25341,6 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/security/office) -"isD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/obj/effect/landmark/start/gary, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "isM" = ( /obj/machinery/status_display/evac/directional/south, /obj/structure/easel, @@ -25617,6 +25603,13 @@ }, /turf/open/floor/iron/dark, /area/station/hallway/primary/central) +"ivh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/landmark/start/gary/rare, +/turf/open/floor/iron/sepia, +/area/station/service/library/artgallery) "ivi" = ( /obj/structure/displaycase/captain, /turf/open/floor/wood, @@ -27168,10 +27161,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/service/chapel) -"iWE" = ( -/obj/effect/landmark/start/gary, -/turf/open/floor/carpet, -/area/station/maintenance/starboard/fore) "iWI" = ( /obj/effect/decal/cleanable/cobweb, /obj/effect/spawner/random/entertainment/coin, @@ -27531,12 +27520,6 @@ /obj/effect/turf_decal/trimline/red/line, /turf/open/floor/iron/dark, /area/station/hallway/secondary/entry) -"jcn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/duct, -/obj/effect/landmark/start/gary, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) "jct" = ( /obj/effect/turf_decal/trimline/dark_blue/filled/warning{ dir = 4 @@ -28222,6 +28205,14 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/engineering/main) +"jqu" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/landmark/start/gary, +/turf/open/floor/iron/dark, +/area/station/maintenance/department/cargo) "jqH" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/turf_decal/stripes/line{ @@ -28375,6 +28366,14 @@ "juc" = ( /turf/open/floor/iron, /area/station/service/hydroponics) +"jud" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/altar_of_gods, +/obj/item/book/bible, +/turf/open/floor/carpet, +/area/station/service/chapel) "jug" = ( /obj/effect/turf_decal/tile/dark_blue/fourcorners, /obj/structure/cable, @@ -29640,13 +29639,6 @@ "jNZ" = ( /turf/open/floor/iron/showroomfloor, /area/station/security/warden) -"jOc" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/landmark/start/gary, -/turf/open/floor/wood, -/area/station/commons/vacant_room/office) "jOi" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/structure/chair_maintenance{ @@ -31924,12 +31916,6 @@ /obj/machinery/station_map/engineering/directional/south, /turf/open/floor/iron/dark, /area/station/security/brig) -"kDm" = ( -/obj/effect/landmark/blobstart, -/obj/machinery/duct, -/obj/effect/landmark/start/gary, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) "kDx" = ( /obj/machinery/firealarm/directional/east, /turf/open/floor/iron/dark/side{ @@ -32393,6 +32379,11 @@ }, /turf/open/floor/carpet/blue, /area/station/medical/psychology) +"kMq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/gary, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) "kMC" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/binary/pump/on/supply/hidden/layer4, @@ -34039,6 +34030,14 @@ /obj/machinery/light/small/directional/south, /turf/open/floor/iron/white, /area/station/science/xenobiology) +"lnt" = ( +/obj/machinery/light/broken/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/landmark/start/gary, +/turf/open/floor/iron/cafeteria, +/area/station/maintenance/starboard/aft) "lnu" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -34376,6 +34375,11 @@ }, /turf/open/floor/engine, /area/station/science/xenobiology) +"ltv" = ( +/obj/effect/landmark/blobstart, +/obj/effect/landmark/start/gary, +/turf/open/floor/wood, +/area/station/maintenance/port/fore) "ltB" = ( /obj/structure/cable, /obj/effect/turf_decal/delivery/red, @@ -34574,6 +34578,12 @@ /obj/effect/spawner/random/structure/tank_holder, /turf/open/floor/plating, /area/station/maintenance/department/medical) +"lwi" = ( +/obj/effect/landmark/blobstart, +/obj/machinery/duct, +/obj/effect/landmark/start/gary, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft) "lwj" = ( /obj/structure/cable/layer1, /turf/open/floor/plating/airless, @@ -35195,6 +35205,13 @@ /obj/item/camera_film, /turf/open/floor/iron/dark/textured, /area/station/service/library/printer) +"lGA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/blobstart, +/obj/machinery/duct, +/obj/effect/landmark/start/gary, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) "lGD" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -35756,10 +35773,6 @@ /obj/structure/plasticflaps/opaque, /turf/open/floor/iron/white, /area/station/maintenance/department/medical) -"lOH" = ( -/obj/effect/landmark/start/gary, -/turf/open/floor/plating, -/area/station/maintenance/port) "lOJ" = ( /obj/structure/window/reinforced/spawner/directional/south, /turf/open/floor/grass, @@ -36391,6 +36404,11 @@ "mbx" = ( /turf/open/floor/iron/dark, /area/station/hallway/secondary/exit/departure_lounge) +"mby" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/gary, +/turf/open/floor/iron, +/area/station/maintenance/starboard/aft) "mbE" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 6 @@ -38769,14 +38787,6 @@ dir = 6 }, /area/station/service/janitor) -"mTo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/chair_maintenance{ - dir = 8 - }, -/obj/effect/landmark/start/gary, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "mTp" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -40219,6 +40229,11 @@ /obj/machinery/duct, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) +"nrM" = ( +/obj/machinery/duct, +/obj/effect/landmark/start/gary/rare, +/turf/open/floor/iron/showroomfloor, +/area/station/commons/toilet/restrooms) "nrN" = ( /obj/structure/flora/bush/fullgrass/style_random, /obj/structure/flora/bush/grassy/style_random, @@ -40627,11 +40642,6 @@ /obj/structure/closet/emcloset/anchored, /turf/open/floor/iron/dark, /area/station/hallway/secondary/exit/departure_lounge) -"nyj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/gary, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) "nyn" = ( /obj/effect/turf_decal/trimline/dark_blue/filled/line{ dir = 5 @@ -42543,14 +42553,6 @@ dir = 8 }, /area/station/medical/paramedic) -"ocy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/altar_of_gods, -/obj/item/storage/book/bible, -/turf/open/floor/carpet, -/area/station/service/chapel) "ocD" = ( /obj/effect/turf_decal/tile/bar/opposingcorners{ dir = 1 @@ -44589,11 +44591,6 @@ dir = 4 }, /area/station/service/hydroponics) -"oLr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/effect/landmark/start/gary, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) "oLy" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/structure/chair_flipped{ @@ -46618,11 +46615,6 @@ /obj/machinery/icecream_vat, /turf/open/floor/iron/kitchen, /area/station/service/kitchen) -"puW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/gary, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) "puX" = ( /obj/structure/sign/warning/secure_area/directional/south, /obj/machinery/space_heater, @@ -51323,6 +51315,14 @@ /obj/machinery/duct, /turf/open/floor/plating, /area/station/maintenance/department/cargo) +"rdA" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/landmark/start/gary, +/turf/open/floor/iron/dark, +/area/station/commons/vacant_room/commissary) "rdG" = ( /obj/effect/turf_decal/trimline/purple/filled/line, /obj/machinery/camera/autoname/directional/south, @@ -53193,6 +53193,13 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron/dark, /area/station/security/checkpoint/customs/auxiliary) +"rGP" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/landmark/start/gary, +/turf/open/floor/wood, +/area/station/commons/vacant_room/office) "rGT" = ( /obj/effect/turf_decal/bot, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -61449,6 +61456,20 @@ /obj/item/kirbyplants/random, /turf/open/floor/wood, /area/station/service/library/private) +"uvo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/landmark/start/gary/uncommon, +/turf/open/floor/stone, +/area/station/smithing) "uvN" = ( /obj/effect/turf_decal/tile/blue/opposingcorners{ dir = 1 @@ -61867,11 +61888,6 @@ /obj/structure/cable, /turf/open/floor/iron/white, /area/station/medical/office) -"uFo" = ( -/obj/effect/spawner/random/entertainment/coin, -/obj/effect/landmark/start/gary, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "uFv" = ( /obj/effect/turf_decal/tile/green/anticorner/contrasted, /obj/structure/table, @@ -63592,14 +63608,6 @@ /obj/structure/table, /turf/open/floor/iron/white, /area/station/medical/patients_rooms/room_b) -"vhb" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/landmark/start/gary, -/turf/open/floor/iron/dark, -/area/station/commons/vacant_room/commissary) "vhd" = ( /obj/effect/turf_decal/trimline/red/filled/warning{ dir = 1 @@ -66368,6 +66376,12 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/white, /area/station/science/research) +"weV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/restraints/handcuffs/cable/zipties/used, +/obj/effect/landmark/start/gary, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) "wfb" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/trash/moisture_trap, @@ -67496,16 +67510,6 @@ /obj/structure/cable, /turf/open/floor/iron/white, /area/station/medical/medbay/central) -"wzb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/chair/wood{ - dir = 4 - }, -/obj/effect/landmark/start/gary/rare, -/turf/open/floor/wood, -/area/station/service/library/lounge) "wzj" = ( /obj/structure/closet/secure_closet/blueshield, /obj/item/storage/bag/garment/blueshield, @@ -69546,15 +69550,6 @@ }, /turf/open/floor/iron/dark, /area/station/security/office) -"xhY" = ( -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/gibs/old, -/obj/effect/landmark/start/gary, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) "xih" = ( /obj/effect/landmark/navigate_destination/common/holodeck, /turf/open/floor/engine{ @@ -71072,6 +71067,11 @@ }, /turf/open/floor/iron/dark, /area/station/hallway/secondary/entry) +"xIC" = ( +/obj/effect/spawner/random/entertainment/coin, +/obj/effect/landmark/start/gary, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) "xIH" = ( /obj/machinery/firealarm/directional/east, /turf/open/floor/iron/dark, @@ -71453,6 +71453,14 @@ dir = 8 }, /area/station/command/heads_quarters/cmo) +"xRe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/structure/chair_maintenance{ + dir = 8 + }, +/obj/effect/landmark/start/gary, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) "xRh" = ( /obj/effect/turf_decal/stripes/line, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -72095,14 +72103,6 @@ dir = 4 }, /area/station/service/hydroponics) -"yaQ" = ( -/obj/machinery/light/broken/directional/east, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/landmark/start/gary, -/turf/open/floor/iron/cafeteria, -/area/station/maintenance/starboard/aft) "yaT" = ( /obj/effect/turf_decal/tile/blue/fourcorners, /obj/machinery/camera/directional/east{ @@ -80775,7 +80775,7 @@ wZF cRp fby hxM -dZz +jqu sKs qQe xhj @@ -81973,7 +81973,7 @@ ksa ksa fPN whJ -oLr +buH hjc fPN fBd @@ -82750,7 +82750,7 @@ fPN tLs mEg lYe -jOc +rGP mEg nyL ydv @@ -84568,7 +84568,7 @@ fPN giy vXA mNt -gwI +nrM bKL nai uXH @@ -85567,7 +85567,7 @@ fEP uoo nGn pGM -aDR +ltv yhT byj odN @@ -92328,7 +92328,7 @@ cLZ cLZ luw yce -lOH +aTt yce luw nwz @@ -92353,7 +92353,7 @@ eub wEB cuU nwz -puW +kMq cuU vuH jgH @@ -94406,11 +94406,11 @@ tcw eub wEB nwz -dIu +weV nwz jwW ghA -puW +kMq nwz jwW nwz @@ -94418,7 +94418,7 @@ tuu jwW nwz vIQ -hBG +lGA vIQ xba xba @@ -94650,7 +94650,7 @@ mxZ wEB nwz feW -puW +kMq nwz nwz jwW @@ -104668,7 +104668,7 @@ mwc ygO blC vwz -vhb +rdA wlw rRZ iyt @@ -105145,7 +105145,7 @@ wEA mZc voi sIW -ajR +uvo vNF tZr aeJ @@ -112151,7 +112151,7 @@ ilj oqK wGN nCa -fCi +haV gRf nLS sZo @@ -115995,7 +115995,7 @@ nBE nBE vJw dgS -kDm +lwi lNF dgS vsB @@ -117257,7 +117257,7 @@ bQY gkM vpL chg -det +ivh sAH fep lvR @@ -117271,11 +117271,11 @@ jOx raC nBE imG -nyj +dXK mhc sxS mhc -nyj +dXK sxi nBE mhc @@ -117285,7 +117285,7 @@ mhc jDj nBE rtJ -gmT +cWr iSr nBE cnU @@ -117537,7 +117537,7 @@ fbT nBE uKp czU -jcn +dlz vkc czU tNd @@ -117722,7 +117722,7 @@ iLB jet enc ulm -iWE +bXe vMt gXK iLB @@ -118001,7 +118001,7 @@ ovM gZc qDZ qDZ -ocy +jud qDZ qDZ qra @@ -118285,7 +118285,7 @@ lAc omZ lAZ owN -wzb +bFn vqc lAZ rOR @@ -119329,7 +119329,7 @@ nBE mhc cNN bcw -yaQ +lnt mhc pCb nep @@ -120621,7 +120621,7 @@ hpY nBE jOi wMo -fGf +gCN tPw plH nBE @@ -121061,7 +121061,7 @@ jxy jxy fXj tvo -isD +hqX aOz gxY jxy @@ -121070,7 +121070,7 @@ iLB lKO jxy iLB -uFo +xIC iLB jxy iLB @@ -121127,7 +121127,7 @@ mhc tZd tZd dsV -cSu +mby tZd mhc hpY @@ -121912,7 +121912,7 @@ khD wtN wzz sZi -nyj +dXK mhc mhc aDe @@ -124155,7 +124155,7 @@ iLB jxy iLB vox -mTo +xRe vox iLB jxy @@ -124479,7 +124479,7 @@ bOr bOr nBE hKC -xhY +cgL xaD nBE byX diff --git a/_maps/map_files/Deltastation/DeltaStation2.dmm b/_maps/map_files/Deltastation/DeltaStation2.dmm index aa9cd67b37d4..91450636521f 100644 --- a/_maps/map_files/Deltastation/DeltaStation2.dmm +++ b/_maps/map_files/Deltastation/DeltaStation2.dmm @@ -4001,6 +4001,11 @@ }, /turf/open/floor/iron, /area/station/maintenance/port/aft) +"aTZ" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/landmark/start/gary/rare, +/turf/open/floor/iron/sepia, +/area/station/service/library/artgallery) "aUo" = ( /obj/effect/turf_decal/tile/neutral/full, /obj/structure/cable, @@ -4340,6 +4345,17 @@ /obj/effect/mapping_helpers/airlock/access/all/command/hop, /turf/open/floor/iron, /area/station/security/checkpoint/customs/aft) +"aYG" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/landmark/generic_maintenance_landmark, +/obj/effect/landmark/event_spawn, +/obj/effect/landmark/blobstart, +/obj/effect/landmark/start/gary, +/turf/open/floor/plating, +/area/station/maintenance/department/electrical) "aYK" = ( /obj/structure/cable, /obj/effect/turf_decal/stripes/line{ @@ -4635,16 +4651,6 @@ /obj/machinery/status_display/ai/directional/west, /turf/open/floor/carpet, /area/station/command/heads_quarters/captain) -"bcJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/generic_maintenance_landmark, -/obj/effect/turf_decal/tile/yellow/fourcorners, -/obj/effect/landmark/blobstart, -/obj/effect/landmark/event_spawn, -/obj/effect/landmark/start/gary, -/turf/open/floor/iron, -/area/station/maintenance/port) "bcR" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/structure/chair/office{ @@ -5544,16 +5550,6 @@ }, /turf/open/floor/plating, /area/station/maintenance/department/chapel) -"bnN" = ( -/obj/effect/landmark/generic_maintenance_landmark, -/obj/structure/chair/wood{ - dir = 4 - }, -/obj/effect/landmark/blobstart, -/obj/effect/landmark/event_spawn, -/obj/effect/landmark/start/gary, -/turf/open/floor/plating, -/area/station/service/theater/abandoned) "bnR" = ( /obj/effect/turf_decal/trimline/blue/filled/corner{ dir = 4 @@ -7325,15 +7321,6 @@ /obj/machinery/light/directional/south, /turf/open/floor/iron, /area/station/hallway/secondary/command) -"bIh" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/turf_decal/siding/wood, -/obj/effect/landmark/start/gary/uncommon, -/turf/open/floor/stone, -/area/station/smithing) "bIk" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, @@ -8336,6 +8323,12 @@ /obj/machinery/airalarm/directional/north, /turf/open/floor/iron/grimy, /area/station/service/chapel) +"bTc" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/hangover, +/obj/effect/landmark/start/gary/rare, +/turf/open/floor/iron/grimy, +/area/station/service/library/lounge) "bTe" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -11811,12 +11804,6 @@ }, /turf/open/floor/iron/grimy, /area/station/maintenance/port/fore) -"cKr" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/table/wood/fancy, -/obj/item/storage/book/bible, -/turf/open/floor/iron/dark, -/area/station/service/chapel/funeral) "cKE" = ( /obj/structure/table/reinforced, /obj/item/paper_bin, @@ -11946,6 +11933,20 @@ }, /turf/open/floor/iron/grimy, /area/station/command/heads_quarters/hos) +"cLY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/generic_maintenance_landmark, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/obj/effect/landmark/blobstart, +/obj/effect/landmark/start/gary, +/turf/open/floor/iron, +/area/station/maintenance/port) "cMf" = ( /obj/structure/cable, /obj/effect/turf_decal/trimline/red/filled/line{ @@ -14883,13 +14884,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/maintenance/port/aft) -"dzJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/radio/intercom/directional/east, -/obj/effect/mapping_helpers/burnt_floor, -/obj/effect/landmark/start/gary/uncommon, -/turf/open/floor/plating, -/area/station/commons/toilet/restrooms) "dAc" = ( /obj/effect/landmark/start/prisoner, /turf/open/floor/iron/dark/side, @@ -16317,13 +16311,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/cargo/lobby) -"dSj" = ( -/obj/effect/spawner/random/engineering/tracking_beacon, -/obj/effect/landmark/event_spawn, -/obj/effect/landmark/blobstart, -/obj/effect/landmark/start/gary, -/turf/open/floor/plating, -/area/station/science/research/abandoned) "dSm" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -17621,13 +17608,6 @@ }, /turf/open/floor/iron, /area/station/medical/medbay/lobby) -"eix" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/landmark/generic_maintenance_landmark, -/obj/effect/mapping_helpers/broken_floor, -/obj/effect/landmark/start/gary/uncommon, -/turf/open/floor/wood, -/area/station/security/detectives_office/private_investigators_office) "eiB" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -18032,14 +18012,6 @@ /obj/effect/turf_decal/trimline/purple/filled/warning, /turf/open/floor/iron/white, /area/station/science/research) -"eox" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/hangover, -/obj/effect/landmark/start/gary/uncommon, -/turf/open/floor/wood, -/area/station/commons/dorms) "eoy" = ( /obj/structure/cable, /obj/effect/spawner/structure/window/reinforced, @@ -18807,6 +18779,11 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/central/aft) +"ewy" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/landmark/start/gary, +/turf/open/floor/iron/grimy, +/area/station/service/abandoned_gambling_den) "ewQ" = ( /obj/machinery/atmospherics/pipe/smart/simple/cyan/hidden{ dir = 4 @@ -19372,20 +19349,6 @@ /obj/effect/turf_decal/tile/neutral/full, /turf/open/floor/iron/large, /area/station/hallway/secondary/exit/departure_lounge) -"eEA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/generic_maintenance_landmark, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/obj/effect/landmark/blobstart, -/obj/effect/landmark/start/gary, -/turf/open/floor/iron, -/area/station/maintenance/port) "eEH" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -22002,13 +21965,6 @@ /obj/effect/turf_decal/tile/blue/fourcorners, /turf/open/floor/iron, /area/station/medical/treatment_center) -"fiZ" = ( -/obj/effect/spawner/random/trash/garbage, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/effect/landmark/start/gary/uncommon, -/turf/open/floor/iron, -/area/station/maintenance/department/crew_quarters/bar) "fjf" = ( /obj/structure/lattice/catwalk, /turf/open/space, @@ -22088,12 +22044,6 @@ }, /turf/open/floor/iron/dark, /area/station/engineering/transit_tube) -"fkl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/glass, -/obj/effect/landmark/start/gary, -/turf/open/floor/plating, -/area/station/maintenance/fore) "fkm" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, /obj/machinery/rnd/server/master, @@ -23731,6 +23681,13 @@ /obj/machinery/status_display/evac/directional/south, /turf/open/floor/iron/white, /area/station/medical/chemistry) +"fEC" = ( +/obj/effect/spawner/random/trash/garbage, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/obj/effect/landmark/start/gary/uncommon, +/turf/open/floor/iron, +/area/station/maintenance/department/crew_quarters/bar) "fEI" = ( /obj/effect/spawner/structure/window/hollow/reinforced/directional{ dir = 9 @@ -24351,6 +24308,19 @@ /obj/effect/spawner/random/engineering/atmospherics_portable, /turf/open/floor/iron, /area/station/maintenance/department/medical/morgue) +"fMY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/generic_maintenance_landmark, +/obj/effect/landmark/blobstart, +/obj/effect/landmark/event_spawn, +/obj/structure/chair/stool/directional/west, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/landmark/start/gary, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) "fMZ" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -24989,14 +24959,6 @@ /obj/machinery/airalarm/directional/west, /turf/open/floor/carpet/black, /area/station/security/prison/safe) -"fUQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/chair_maintenance, -/obj/effect/landmark/start/gary, -/turf/open/floor/wood, -/area/station/maintenance/port/fore) "fUU" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/effect/turf_decal/siding/yellow, @@ -26686,6 +26648,11 @@ }, /turf/open/floor/iron, /area/station/science/auxlab/firing_range) +"gpU" = ( +/obj/item/book/bible, +/obj/structure/altar_of_gods, +/turf/open/floor/iron/grimy, +/area/station/service/chapel) "gpY" = ( /obj/effect/turf_decal/trimline/neutral/warning{ dir = 4 @@ -28436,6 +28403,16 @@ }, /turf/open/floor/iron, /area/station/engineering/storage/tech) +"gJX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/generic_maintenance_landmark, +/obj/effect/turf_decal/tile/yellow/fourcorners, +/obj/effect/landmark/blobstart, +/obj/effect/landmark/event_spawn, +/obj/effect/landmark/start/gary, +/turf/open/floor/iron, +/area/station/maintenance/port) "gJZ" = ( /obj/structure/cable, /obj/machinery/computer/records/security{ @@ -28871,11 +28848,6 @@ /obj/structure/cable, /turf/open/floor/iron/smooth, /area/station/maintenance/department/science/xenobiology) -"gPt" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/landmark/start/gary/uncommon, -/turf/open/floor/plating, -/area/station/commons/toilet/locker) "gPv" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment{ @@ -31313,14 +31285,6 @@ /obj/effect/turf_decal/trimline/blue/filled/line, /turf/open/floor/iron/white, /area/station/medical/medbay/lobby) -"huS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible, -/obj/effect/spawner/random/engineering/tracking_beacon, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/mapping_helpers/burnt_floor, -/obj/effect/landmark/start/gary, -/turf/open/floor/iron, -/area/station/maintenance/department/electrical) "huX" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/disposalpipe/segment{ @@ -33639,20 +33603,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/service/abandoned_gambling_den) -"hZi" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/blobstart, -/obj/effect/landmark/generic_maintenance_landmark, -/obj/effect/landmark/event_spawn, -/obj/effect/landmark/start/gary, -/turf/open/floor/iron/dark, -/area/station/service/abandoned_gambling_den/gaming) "hZl" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/door/morgue{ @@ -34568,12 +34518,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/cargo/miningoffice) -"iiK" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/start/hangover, -/obj/effect/landmark/start/gary/rare, -/turf/open/floor/iron/grimy, -/area/station/service/library/lounge) "iiP" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -43996,15 +43940,6 @@ /obj/structure/lattice/catwalk, /turf/open/space/basic, /area/space/nearstation) -"kss" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/effect/landmark/generic_maintenance_landmark, -/obj/effect/landmark/blobstart, -/obj/machinery/duct, -/obj/effect/landmark/start/gary, -/turf/open/floor/plating, -/area/station/medical/abandoned) "ksy" = ( /obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ dir = 8 @@ -44068,13 +44003,6 @@ dir = 8 }, /area/station/hallway/primary/fore) -"ktR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/event_spawn, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/gary, -/turf/open/floor/iron/grimy, -/area/station/commons/vacant_room/office) "ktV" = ( /obj/structure/disposalpipe/sorting/mail{ dir = 4; @@ -44926,6 +44854,12 @@ }, /turf/open/floor/iron/white/textured, /area/station/medical/pathology) +"kEA" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/table/wood/fancy, +/obj/item/book/bible, +/turf/open/floor/iron/dark, +/area/station/service/chapel/funeral) "kEJ" = ( /obj/structure/cable, /obj/effect/decal/cleanable/dirt, @@ -46301,6 +46235,11 @@ /obj/structure/ghost_critter_spawn, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) +"kWK" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/landmark/start/gary/uncommon, +/turf/open/floor/plating, +/area/station/commons/toilet/locker) "kWM" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -49436,17 +49375,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/station/cargo/warehouse) -"lIE" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/landmark/generic_maintenance_landmark, -/obj/effect/landmark/event_spawn, -/obj/effect/landmark/blobstart, -/obj/effect/landmark/start/gary, -/turf/open/floor/plating, -/area/station/maintenance/department/electrical) "lII" = ( /obj/structure/chair/sofa/bench{ dir = 1 @@ -52284,19 +52212,6 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/fore) -"msI" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/generic_maintenance_landmark, -/obj/effect/landmark/blobstart, -/obj/effect/landmark/event_spawn, -/obj/structure/chair/stool/directional/west, -/obj/effect/mapping_helpers/broken_floor, -/obj/effect/landmark/start/gary, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) "msJ" = ( /obj/machinery/status_display/evac/directional/east, /obj/effect/turf_decal/stripes/line{ @@ -54713,11 +54628,6 @@ /obj/machinery/plumbing/ooze_compressor, /turf/open/floor/iron/dark, /area/station/science/xenobiology) -"mVi" = ( -/obj/effect/mapping_helpers/broken_floor, -/obj/effect/landmark/start/gary, -/turf/open/floor/iron/grimy, -/area/station/service/abandoned_gambling_den) "mVo" = ( /obj/structure/disposalpipe/segment{ dir = 6 @@ -55145,6 +55055,14 @@ }, /turf/open/floor/iron, /area/station/tcommsat/server) +"nay" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible, +/obj/effect/spawner/random/engineering/tracking_beacon, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/mapping_helpers/burnt_floor, +/obj/effect/landmark/start/gary, +/turf/open/floor/iron, +/area/station/maintenance/department/electrical) "naB" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/siding/purple{ @@ -58079,6 +57997,15 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron, /area/station/engineering/atmos) +"nNl" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/siding/wood, +/obj/effect/landmark/start/gary/uncommon, +/turf/open/floor/stone, +/area/station/smithing) "nNq" = ( /obj/machinery/button/door/directional/east{ id = "Dorm5"; @@ -60794,11 +60721,6 @@ "oxo" = ( /turf/closed/wall/r_wall, /area/station/science/ordnance/freezerchamber) -"oxB" = ( -/obj/effect/turf_decal/siding/wood, -/obj/effect/landmark/start/gary/rare, -/turf/open/floor/iron/sepia, -/area/station/service/library/artgallery) "oxD" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/blue, @@ -61853,6 +61775,12 @@ }, /turf/open/floor/iron, /area/station/engineering/atmos/hfr_room) +"oLa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/glass, +/obj/effect/landmark/start/gary, +/turf/open/floor/plating, +/area/station/maintenance/fore) "oLd" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, /obj/effect/decal/cleanable/dirt, @@ -64436,6 +64364,13 @@ /obj/structure/window/spawner/directional/east, /turf/open/floor/iron/dark/textured, /area/station/security/prison/workout) +"prG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/radio/intercom/directional/east, +/obj/effect/mapping_helpers/burnt_floor, +/obj/effect/landmark/start/gary/uncommon, +/turf/open/floor/plating, +/area/station/commons/toilet/restrooms) "prJ" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -67679,6 +67614,16 @@ /obj/item/kirbyplants/random, /turf/open/floor/iron, /area/station/service/hydroponics) +"qdv" = ( +/obj/effect/landmark/generic_maintenance_landmark, +/obj/structure/chair/wood{ + dir = 4 + }, +/obj/effect/landmark/blobstart, +/obj/effect/landmark/event_spawn, +/obj/effect/landmark/start/gary, +/turf/open/floor/plating, +/area/station/service/theater/abandoned) "qdA" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/neutral{ @@ -67801,17 +67746,6 @@ }, /turf/open/floor/iron, /area/station/security/processing) -"qfe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/holopad, -/obj/machinery/firealarm/directional/south, -/obj/effect/landmark/start/gary/rare, -/turf/open/floor/iron, -/area/station/commons/vacant_room/commissary) "qfi" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -71774,6 +71708,14 @@ }, /turf/open/floor/plating, /area/station/science/ordnance/office) +"reX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/landmark/start/gary, +/turf/open/floor/plating, +/area/station/hallway/secondary/construction) "rfd" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -73635,6 +73577,23 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/command) +"rBC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/blobstart, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/landmark/event_spawn, +/obj/effect/landmark/start/gary, +/turf/open/floor/iron, +/area/station/service/kitchen/abandoned) "rBI" = ( /obj/structure/window/reinforced/tinted/spawner/directional/east, /obj/machinery/computer/records/security, @@ -74943,15 +74902,6 @@ /obj/effect/turf_decal/siding/white/corner, /turf/open/floor/iron/freezer, /area/station/service/kitchen/coldroom) -"rQV" = ( -/obj/effect/landmark/blobstart, -/obj/effect/landmark/generic_maintenance_landmark, -/obj/effect/landmark/event_spawn, -/obj/machinery/growing/soil, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/gary, -/turf/open/floor/plating, -/area/station/service/hydroponics/garden/abandoned) "rRa" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -79220,6 +79170,20 @@ }, /turf/open/floor/iron, /area/station/service/hydroponics/garden) +"sSO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/landmark/blobstart, +/obj/effect/landmark/generic_maintenance_landmark, +/obj/effect/landmark/event_spawn, +/obj/effect/landmark/start/gary, +/turf/open/floor/iron/dark, +/area/station/service/abandoned_gambling_den/gaming) "sTn" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -80870,6 +80834,14 @@ }, /turf/open/floor/iron, /area/station/cargo/quartermaster) +"tpF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/structure/chair_maintenance, +/obj/effect/landmark/start/gary, +/turf/open/floor/wood, +/area/station/maintenance/port/fore) "tpI" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -85657,13 +85629,6 @@ }, /turf/open/floor/iron/white, /area/station/science/lobby) -"uwj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/event_spawn, -/obj/effect/landmark/generic_maintenance_landmark, -/obj/effect/landmark/start/gary, -/turf/open/floor/iron/dark, -/area/station/service/electronic_marketing_den) "uwn" = ( /obj/structure/table/wood, /obj/item/storage/crayons, @@ -87001,6 +86966,13 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/station/ai_monitored/turret_protected/aisat_interior) +"uNj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/gary, +/turf/open/floor/iron/grimy, +/area/station/commons/vacant_room/office) "uNx" = ( /obj/structure/table/wood, /obj/item/folder/blue{ @@ -87198,14 +87170,6 @@ }, /turf/open/floor/plating, /area/station/cargo/storage) -"uPq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/landmark/start/gary, -/turf/open/floor/plating, -/area/station/hallway/secondary/construction) "uPx" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -87569,23 +87533,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/station/cargo/storage) -"uTz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/blobstart, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/landmark/event_spawn, -/obj/effect/landmark/start/gary, -/turf/open/floor/iron, -/area/station/service/kitchen/abandoned) "uTB" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -88840,11 +88787,6 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron, /area/station/engineering/atmos/mix) -"vkr" = ( -/obj/item/storage/book/bible, -/obj/structure/altar_of_gods, -/turf/open/floor/iron/grimy, -/area/station/service/chapel) "vkv" = ( /obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ dir = 8 @@ -93152,6 +93094,15 @@ dir = 1 }, /area/station/maintenance/disposal/incinerator) +"wlO" = ( +/obj/effect/landmark/blobstart, +/obj/effect/landmark/generic_maintenance_landmark, +/obj/effect/landmark/event_spawn, +/obj/machinery/growing/soil, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/gary, +/turf/open/floor/plating, +/area/station/service/hydroponics/garden/abandoned) "wlS" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ @@ -94460,6 +94411,17 @@ }, /turf/open/space/basic, /area/space/nearstation) +"wyX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/holopad, +/obj/machinery/firealarm/directional/south, +/obj/effect/landmark/start/gary/rare, +/turf/open/floor/iron, +/area/station/commons/vacant_room/commissary) "wza" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -96659,6 +96621,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/grimy, /area/station/command/heads_quarters/hop) +"xbI" = ( +/obj/effect/spawner/random/engineering/tracking_beacon, +/obj/effect/landmark/event_spawn, +/obj/effect/landmark/blobstart, +/obj/effect/landmark/start/gary, +/turf/open/floor/plating, +/area/station/science/research/abandoned) "xbJ" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command{ @@ -98774,6 +98743,13 @@ /obj/machinery/door/poddoor/massdriver_trash, /turf/open/floor/iron, /area/station/maintenance/disposal) +"xCZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/event_spawn, +/obj/effect/landmark/generic_maintenance_landmark, +/obj/effect/landmark/start/gary, +/turf/open/floor/iron/dark, +/area/station/service/electronic_marketing_den) "xDc" = ( /obj/effect/landmark/start/hangover, /obj/effect/decal/cleanable/dirt, @@ -99125,6 +99101,15 @@ /obj/structure/cable, /turf/open/floor/iron/white, /area/station/science/research) +"xGm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/obj/effect/landmark/generic_maintenance_landmark, +/obj/effect/landmark/blobstart, +/obj/machinery/duct, +/obj/effect/landmark/start/gary, +/turf/open/floor/plating, +/area/station/medical/abandoned) "xGu" = ( /obj/structure/frame/machine{ anchored = 1 @@ -99926,6 +99911,13 @@ /obj/effect/landmark/generic_maintenance_landmark, /turf/open/floor/plating, /area/station/maintenance/department/science) +"xQH" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/landmark/generic_maintenance_landmark, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/landmark/start/gary/uncommon, +/turf/open/floor/wood, +/area/station/security/detectives_office/private_investigators_office) "xQM" = ( /obj/machinery/holopad, /obj/effect/turf_decal/bot, @@ -101571,6 +101563,14 @@ /obj/machinery/status_display/evac/directional/south, /turf/open/floor/iron, /area/station/commons/toilet/restrooms) +"ymf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/hangover, +/obj/effect/landmark/start/gary/uncommon, +/turf/open/floor/wood, +/area/station/commons/dorms) "ymi" = ( /obj/machinery/light/directional/south, /obj/item/kirbyplants/random, @@ -122310,7 +122310,7 @@ cRJ mAt mAt pBY -mVi +ewy fUf hSE nsW @@ -127197,7 +127197,7 @@ nEc hrQ kGQ tWl -dSj +xbI bSN iFR lxM @@ -129986,7 +129986,7 @@ rgn pTC pFP pFP -eEA +cLY xbv owY pTC @@ -130251,7 +130251,7 @@ rrU vcB aEJ qcM -bcJ +gJX dMV qhC vcB @@ -130431,7 +130431,7 @@ aaa fIE qHI fLc -uwj +xCZ kzI iFV oYs @@ -130459,12 +130459,12 @@ uTq oYs kXS rTM -rQV +wlO kJr eAI oYs dqC -fUQ +tpF fKk oYs oYs @@ -130696,7 +130696,7 @@ bxg hcL mFH sLx -msI +fMY qDr oYs jjk @@ -131520,7 +131520,7 @@ ilo fdB aqF aqF -bIh +nNl kCi fdB jPf @@ -134028,7 +134028,7 @@ lWu tbC aHC jcT -dzJ +prG hcK vCw pst @@ -134069,7 +134069,7 @@ oyb xbi hRX hUO -ktR +uNj xIR vBc oYs @@ -140227,7 +140227,7 @@ qAV fqn wwV fOP -fiZ +fEC dag tNa qAV @@ -143273,7 +143273,7 @@ jdL kvW uGx gPO -fkl +oLa uaz vkG iql @@ -145081,7 +145081,7 @@ vno jYU llB rxw -hZi +sSO tyU kvK sKC @@ -145842,7 +145842,7 @@ aeF vno nNs ffk -uTz +rBC egs vno rJN @@ -146442,7 +146442,7 @@ gbt hgJ mRh gMM -qfe +wyX tXA nhI nGZ @@ -146471,7 +146471,7 @@ qkj qMf vaE rKL -eix +xQH cjs hJo kfb @@ -147780,7 +147780,7 @@ rMa sDJ rMa iVt -vkr +gpU slr oQM mmM @@ -147983,7 +147983,7 @@ crR szQ iYi bjs -gPt +kWK bEK iYi iYi @@ -148260,7 +148260,7 @@ jEN teU kcv gZU -oxB +aTZ uNf qMf wBF @@ -148782,7 +148782,7 @@ xPK wZE eSU haQ -huS +nay pdb hnH nvM @@ -150082,7 +150082,7 @@ kZc kZc igI qKs -cKr +kEA kRC niE tVD @@ -150324,7 +150324,7 @@ bqS rlw wMj hth -lIE +aYG fZh gmD krx @@ -150572,7 +150572,7 @@ hvm cao gDV aXW -iiK +bTc ajP eLz qMh @@ -152886,7 +152886,7 @@ fPt opZ wEM uen -kss +xGm klE ayA tHd @@ -152894,7 +152894,7 @@ ujU ehy cfR rvu -uPq +reX mIc iFL waI @@ -152905,7 +152905,7 @@ iNE lXm pcc prr -bnN +qdv xnT usy oLT @@ -153890,7 +153890,7 @@ vHY hie qbZ riK -eox +ymf kvM yaI wgE diff --git a/_maps/map_files/IceBoxStation/IceBoxStation.dmm b/_maps/map_files/IceBoxStation/IceBoxStation.dmm index bffff6ed08bb..e59a7523e8be 100644 --- a/_maps/map_files/IceBoxStation/IceBoxStation.dmm +++ b/_maps/map_files/IceBoxStation/IceBoxStation.dmm @@ -2155,6 +2155,15 @@ /obj/machinery/holopad, /turf/open/floor/iron/large, /area/station/commons/storage/tools) +"aKA" = ( +/obj/structure/grille/broken, +/obj/effect/spawner/random/maintenance, +/obj/effect/decal/cleanable/generic, +/obj/effect/landmark/generic_maintenance_landmark, +/obj/effect/landmark/blobstart, +/obj/effect/landmark/start/gary, +/turf/open/floor/plating, +/area/station/maintenance/department/medical/morgue) "aKG" = ( /obj/structure/table, /turf/open/floor/iron/smooth, @@ -3018,6 +3027,14 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/department/medical/pathology) +"aZg" = ( +/obj/effect/decal/cleanable/glass, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/gary, +/turf/open/floor/iron/cafeteria{ + dir = 5 + }, +/area/station/maintenance/port/aft) "aZk" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 @@ -6289,6 +6306,13 @@ /obj/effect/spawner/structure/window/reinforced/tinted, /turf/open/floor/iron/dark, /area/station/service/chapel) +"bWv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/blobstart, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/landmark/start/gary, +/turf/open/floor/plating, +/area/station/maintenance/department/medical/morgue) "bWB" = ( /obj/structure/table, /obj/effect/decal/cleanable/cobweb/cobweb2, @@ -6576,13 +6600,6 @@ /obj/machinery/camera/emp_proof/directional/north, /turf/open/floor/iron/cafeteria, /area/station/commons/dorms/laundry) -"caf" = ( -/obj/machinery/light/directional/west, -/obj/item/radio/intercom/directional/west, -/obj/effect/landmark/event_spawn, -/obj/effect/landmark/start/gary/rare, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/locker) "caC" = ( /obj/machinery/door/window/right/directional/south{ dir = 8; @@ -6891,6 +6908,13 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron/dark, /area/station/service/chapel/office) +"cfb" = ( +/obj/machinery/light/directional/west, +/obj/item/radio/intercom/directional/west, +/obj/effect/landmark/event_spawn, +/obj/effect/landmark/start/gary/rare, +/turf/open/floor/iron/freezer, +/area/station/commons/toilet/locker) "cfe" = ( /obj/structure/cable, /obj/machinery/holopad/secure, @@ -7259,6 +7283,10 @@ /obj/effect/turf_decal/tile/yellow/opposingcorners, /turf/open/floor/iron/white, /area/station/maintenance/port/fore) +"ckY" = ( +/obj/effect/landmark/start/gary, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft) "cll" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -7913,13 +7941,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/hallway/primary/starboard) -"cvv" = ( -/obj/structure/table/wood, -/obj/machinery/airalarm/directional/north, -/obj/item/storage/book/bible, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/chapel) "cvz" = ( /obj/machinery/duct, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -8462,12 +8483,6 @@ /obj/structure/flora/tree/pine/style_random, /turf/open/misc/asteroid/snow/icemoon, /area/icemoon/underground/explored) -"cCc" = ( -/obj/effect/decal/cleanable/plasma, -/obj/effect/landmark/blobstart, -/obj/effect/landmark/start/gary, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) "cCt" = ( /obj/structure/rack, /obj/effect/spawner/random/techstorage/rnd_all, @@ -8646,6 +8661,11 @@ /obj/item/radio/intercom/directional/north, /turf/open/floor/iron/smooth_edge, /area/station/security/lockers) +"cFm" = ( +/obj/structure/table/glass, +/obj/item/book/bible, +/turf/open/floor/iron/chapel, +/area/station/service/chapel) "cFJ" = ( /obj/effect/spawner/random/structure/steam_vent, /turf/open/floor/plating, @@ -9782,6 +9802,11 @@ /obj/effect/turf_decal/arrows, /turf/open/floor/iron, /area/station/cargo/lobby) +"cXj" = ( +/obj/structure/table/wood, +/obj/item/book/bible, +/turf/open/floor/iron/dark, +/area/station/service/chapel/office) "cXl" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -9952,6 +9977,11 @@ "cZD" = ( /turf/open/floor/iron/checker, /area/station/maintenance/port/fore) +"cZE" = ( +/obj/effect/spawner/random/trash/mess, +/obj/effect/landmark/start/gary, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) "cZN" = ( /obj/structure/table/wood, /obj/item/soap/nanotrasen, @@ -10685,6 +10715,13 @@ /obj/effect/landmark/navigate_destination/atmos, /turf/open/floor/iron, /area/station/engineering/lobby) +"djT" = ( +/obj/structure/table/wood, +/obj/machinery/airalarm/directional/north, +/obj/item/book/bible, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/service/chapel) "djU" = ( /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, /turf/open/floor/iron, @@ -10955,6 +10992,14 @@ /obj/structure/tank_holder/extinguisher, /turf/open/floor/plating, /area/station/maintenance/department/medical/morgue) +"dpt" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/gary/uncommon, +/turf/open/floor/iron, +/area/station/maintenance/starboard/upper) "dpB" = ( /obj/machinery/firealarm/directional/south, /obj/effect/turf_decal/trimline/yellow/filled/line, @@ -12012,14 +12057,6 @@ /obj/effect/decal/cleanable/food/egg_smudge, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"dGH" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/gary/uncommon, -/turf/open/floor/iron, -/area/station/maintenance/starboard/upper) "dGK" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -12508,13 +12545,6 @@ dir = 1 }, /area/station/maintenance/department/cargo) -"dQA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/blobstart, -/obj/effect/mapping_helpers/broken_floor, -/obj/effect/landmark/start/gary, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) "dQI" = ( /obj/effect/landmark/start/assistant, /obj/effect/turf_decal/tile/neutral/half/contrasted{ @@ -12537,6 +12567,11 @@ /obj/structure/sign/departments/rndserver/directional/south, /turf/open/floor/iron/white, /area/station/science/research) +"dQV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/gary, +/turf/open/floor/iron, +/area/station/maintenance/starboard/fore) "dRc" = ( /obj/structure/table, /obj/machinery/firealarm/directional/west, @@ -16818,11 +16853,6 @@ }, /turf/open/floor/iron/white, /area/station/medical/treatment_center) -"fli" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/gary, -/turf/open/floor/iron, -/area/station/maintenance/starboard/fore) "flx" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=HOP"; @@ -18776,14 +18806,6 @@ "fUR" = ( /turf/closed/wall, /area/station/hallway/secondary/entry) -"fVd" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/turf_decal/siding/wood/corner{ - dir = 8 - }, -/obj/effect/landmark/start/gary/uncommon, -/turf/open/floor/stone, -/area/station/smithing) "fVm" = ( /obj/machinery/door/airlock/maintenance{ name = "Chemical Storage" @@ -19057,13 +19079,6 @@ }, /turf/open/floor/iron, /area/station/command/gateway) -"gal" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/duct, -/obj/structure/cable, -/turf/open/floor/iron/white/textured, -/area/station/security/medical) "gam" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/mining/glass{ @@ -19339,14 +19354,6 @@ /obj/structure/sign/poster/contraband/random/directional/south, /turf/open/floor/eighties/red, /area/station/security/prison/safe) -"gcP" = ( -/obj/item/storage/book/bible, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/table/wood, -/turf/open/floor/iron/dark, -/area/station/security/prison/rec) "gcV" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 @@ -20334,15 +20341,6 @@ dir = 1 }, /area/mine/eva/lower) -"gtD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/gary/rare, -/turf/open/floor/catwalk_floor/iron_smooth, -/area/station/maintenance/department/chapel) "gtF" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 @@ -22330,6 +22328,14 @@ /obj/effect/mapping_helpers/airlock/access/all/engineering/general, /turf/open/floor/engine, /area/station/engineering/supermatter/room) +"hch" = ( +/obj/item/book/bible, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/table/wood, +/turf/open/floor/iron/dark, +/area/station/security/prison/rec) "hcv" = ( /obj/machinery/newscaster/directional/north, /obj/effect/turf_decal/tile/neutral{ @@ -22713,13 +22719,6 @@ /obj/effect/mapping_helpers/airalarm/mixingchamber_access, /turf/open/floor/iron/dark, /area/station/science/ordnance/freezerchamber) -"hjA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/effect/landmark/start/gary, -/turf/open/floor/iron/white, -/area/station/maintenance/port/fore) "hjE" = ( /turf/closed/wall/r_wall, /area/station/science/explab) @@ -24611,10 +24610,6 @@ /obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron/dark/smooth_corner, /area/station/ai_monitored/command/storage/eva) -"hSn" = ( -/obj/effect/landmark/start/gary, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) "hSp" = ( /obj/effect/turf_decal/stripes/line, /obj/structure/table/reinforced, @@ -24654,14 +24649,6 @@ /obj/machinery/newscaster/directional/south, /turf/open/floor/iron, /area/station/security/processing) -"hSY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/landmark/start/gary, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) "hSZ" = ( /obj/structure/cable, /obj/effect/turf_decal/trimline/dark_blue/line{ @@ -26328,6 +26315,15 @@ }, /turf/open/floor/iron, /area/station/service/hydroponics) +"iuI" = ( +/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/landmark/start/gary/rare, +/turf/open/floor/wood, +/area/station/service/library) "iuQ" = ( /obj/structure/cable, /obj/machinery/door/airlock/glass{ @@ -26425,6 +26421,14 @@ /obj/structure/railing, /turf/open/misc/asteroid/snow/icemoon, /area/icemoon/underground/explored) +"ixg" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/landmark/start/gary/uncommon, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/fore/lesser) "ixu" = ( /obj/machinery/camera/directional/north{ c_tag = "Teleporter" @@ -27620,6 +27624,12 @@ }, /turf/open/floor/iron/white/side, /area/mine/living_quarters) +"iQy" = ( +/obj/effect/decal/cleanable/plasma, +/obj/effect/landmark/blobstart, +/obj/effect/landmark/start/gary, +/turf/open/floor/plating, +/area/station/maintenance/department/medical/morgue) "iQF" = ( /obj/effect/turf_decal/trimline/yellow/filled/line, /obj/machinery/airalarm/directional/south, @@ -27690,6 +27700,13 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/security/checkpoint/engineering) +"iRu" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/effect/landmark/start/gary, +/turf/open/floor/iron/white, +/area/station/maintenance/port/fore) "iRx" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -28388,14 +28405,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/security/courtroom) -"jbM" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 - }, -/obj/effect/landmark/start/gary/rare, -/turf/open/floor/iron/cafeteria, -/area/station/commons/dorms/laundry) "jbT" = ( /obj/structure/cable, /obj/effect/spawner/structure/window/reinforced, @@ -28557,6 +28566,11 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/wood, /area/station/service/lawoffice) +"jfb" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/landmark/start/gary, +/turf/open/floor/wood, +/area/station/maintenance/fore) "jfc" = ( /turf/closed/wall, /area/station/command/heads_quarters/hop) @@ -30491,19 +30505,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/station/maintenance/port/greater) -"jNE" = ( -/obj/item/flashlight/flare/candle{ - pixel_x = -7; - pixel_y = 3 - }, -/obj/item/storage/book{ - name = "Tales from the First"; - pixel_x = 5; - pixel_y = 5 - }, -/obj/structure/table/wood, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "jNZ" = ( /obj/effect/turf_decal/weather/snow/corner{ dir = 9 @@ -30752,6 +30753,15 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/security/brig/entrance) +"jRa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/gary/rare, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/chapel) "jRu" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -31819,6 +31829,14 @@ /obj/item/kirbyplants/random, /turf/open/floor/iron, /area/station/hallway/primary/starboard) +"khD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/landmark/start/gary, +/turf/open/floor/iron, +/area/station/maintenance/port/aft) "khE" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -33058,6 +33076,13 @@ /obj/machinery/duct, /turf/open/floor/iron/white/textured, /area/station/security/medical) +"kBE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/book/bible, +/obj/structure/altar_of_gods, +/turf/open/floor/iron/dark, +/area/station/service/chapel) "kBL" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 1 @@ -35594,14 +35619,6 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/iron/dark, /area/station/service/chapel) -"lqp" = ( -/obj/structure/chair/plastic{ - dir = 0 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/gary/uncommon, -/turf/open/floor/iron, -/area/station/maintenance/starboard/fore) "lqs" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -37096,15 +37113,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/textured, /area/mine/mechbay) -"lQi" = ( -/obj/structure/grille/broken, -/obj/effect/spawner/random/maintenance, -/obj/effect/decal/cleanable/generic, -/obj/effect/landmark/generic_maintenance_landmark, -/obj/effect/landmark/blobstart, -/obj/effect/landmark/start/gary, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) "lQm" = ( /obj/structure/cable, /turf/open/floor/iron, @@ -40269,6 +40277,14 @@ /obj/effect/mapping_helpers/airlock/access/any/science/maintenance, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) +"mUx" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/landmark/start/gary/rare, +/turf/open/floor/wood, +/area/station/maintenance/aft/greater) "mUM" = ( /obj/item/radio/intercom/directional/north, /obj/effect/turf_decal/tile/red/anticorner{ @@ -41048,11 +41064,6 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/fore) -"ngd" = ( -/obj/effect/mapping_helpers/broken_floor, -/obj/effect/landmark/start/gary, -/turf/open/floor/wood, -/area/station/maintenance/fore) "ngj" = ( /obj/effect/turf_decal/stripes/asteroid/line{ dir = 9 @@ -43035,6 +43046,12 @@ /obj/structure/barricade/wooden, /turf/open/floor/eighties/red, /area/station/security/prison/safe) +"nIh" = ( +/obj/effect/landmark/generic_maintenance_landmark, +/obj/structure/cable, +/obj/effect/landmark/start/gary, +/turf/open/floor/plating, +/area/station/maintenance/department/crew_quarters/bar) "nIl" = ( /obj/structure/chair/stool/directional/north, /obj/effect/turf_decal/tile/red/half/contrasted{ @@ -47654,11 +47671,6 @@ dir = 1 }, /area/station/security/prison) -"peA" = ( -/obj/structure/table/wood, -/obj/item/storage/book/bible, -/turf/open/floor/iron/dark, -/area/station/service/chapel/office) "peC" = ( /obj/effect/turf_decal/siding/wood, /obj/item/kirbyplants/random/fullysynthetic{ @@ -49319,14 +49331,6 @@ /obj/effect/spawner/random/engineering/tracking_beacon, /turf/open/floor/stone, /area/station/smithing) -"pFX" = ( -/obj/effect/decal/cleanable/glass, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/gary, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/station/maintenance/port/aft) "pFZ" = ( /obj/item/target/syndicate, /obj/effect/decal/cleanable/dirt, @@ -49758,12 +49762,6 @@ }, /turf/open/floor/iron/freezer, /area/station/commons/toilet/locker) -"pLC" = ( -/obj/effect/landmark/generic_maintenance_landmark, -/obj/structure/cable, -/obj/effect/landmark/start/gary, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) "pLO" = ( /obj/machinery/status_display/evac/directional/east, /obj/structure/cable, @@ -53326,14 +53324,6 @@ }, /turf/open/floor/iron/dark/textured, /area/station/engineering/main) -"qWB" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/mapping_helpers/broken_floor, -/obj/effect/landmark/start/gary/rare, -/turf/open/floor/wood, -/area/station/maintenance/aft/greater) "qWD" = ( /obj/machinery/duct, /turf/open/floor/iron/white, @@ -54409,6 +54399,19 @@ /obj/effect/turf_decal/tile/brown/half/contrasted, /turf/open/floor/iron/dark/side, /area/mine/eva/lower) +"rnD" = ( +/obj/item/flashlight/flare/candle{ + pixel_x = -7; + pixel_y = 3 + }, +/obj/item/book{ + name = "Tales from the First"; + pixel_x = 5; + pixel_y = 5 + }, +/obj/structure/table/wood, +/turf/open/floor/plating, +/area/station/maintenance/starboard/lesser) "rnQ" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -54563,11 +54566,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/cargo/lobby) -"rqR" = ( -/obj/structure/table/glass, -/obj/item/storage/book/bible, -/turf/open/floor/iron/chapel, -/area/station/service/chapel) "rqT" = ( /obj/machinery/door/firedoor, /turf/open/floor/iron, @@ -58070,6 +58068,14 @@ /obj/effect/turf_decal/trimline/blue/corner, /turf/open/floor/iron/dark, /area/station/service/hydroponics) +"syN" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/effect/landmark/start/gary/uncommon, +/turf/open/floor/stone, +/area/station/smithing) "syW" = ( /obj/effect/spawner/structure/window/hollow/reinforced/end, /turf/open/floor/plating, @@ -59310,14 +59316,6 @@ /obj/machinery/light_switch/directional/north, /turf/open/floor/iron/freezer, /area/station/commons/toilet/locker) -"sVF" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/landmark/start/gary/uncommon, -/turf/open/floor/catwalk_floor/iron_smooth, -/area/station/maintenance/fore/lesser) "sVL" = ( /obj/machinery/holopad, /obj/effect/turf_decal/bot, @@ -60840,6 +60838,14 @@ }, /turf/open/floor/iron/smooth_half, /area/station/security/brig/upper) +"txX" = ( +/obj/structure/chair/plastic{ + dir = 0 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/gary/uncommon, +/turf/open/floor/iron, +/area/station/maintenance/starboard/fore) "tyb" = ( /obj/effect/turf_decal/bot, /obj/machinery/holopad, @@ -61894,11 +61900,6 @@ }, /turf/open/floor/iron, /area/station/command/gateway) -"tOp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/gary/uncommon, -/turf/open/floor/iron, -/area/station/construction) "tOq" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -66953,6 +66954,11 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/service) +"vxC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/gary/uncommon, +/turf/open/floor/iron, +/area/station/construction) "vxV" = ( /obj/structure/cable, /obj/machinery/duct, @@ -67648,15 +67654,6 @@ }, /turf/open/floor/iron/white/smooth_large, /area/station/medical/chemistry) -"vHS" = ( -/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/landmark/start/gary/rare, -/turf/open/floor/wood, -/area/station/service/library) "vHT" = ( /obj/effect/spawner/random/trash/mess, /obj/item/storage/box, @@ -70308,6 +70305,14 @@ }, /turf/closed/wall, /area/station/cargo/sorting) +"wBH" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/landmark/start/gary/rare, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) "wBS" = ( /obj/structure/table/wood, /obj/machinery/light/directional/west, @@ -70655,6 +70660,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/station/maintenance/port/fore) +"wGM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/obj/structure/cable, +/turf/open/floor/iron/white/textured, +/area/station/security/medical) "wGN" = ( /obj/machinery/corral_corner{ mapping_id = "2" @@ -70919,11 +70931,6 @@ }, /turf/open/floor/iron, /area/station/command/bridge) -"wKO" = ( -/obj/effect/spawner/random/trash/mess, -/obj/effect/landmark/start/gary, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "wLk" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers, /obj/machinery/portable_atmospherics/canister/carbon_dioxide, @@ -75358,13 +75365,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"ygp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/item/storage/book/bible, -/obj/structure/altar_of_gods, -/turf/open/floor/iron/dark, -/area/station/service/chapel) "ygs" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 9 @@ -100663,7 +100663,7 @@ hPk bwi vyO dEz -gcP +hch hOA mJX cmh @@ -159564,7 +159564,7 @@ iwS iJM iEh tDG -jbM +wBH xwG qMo iDt @@ -163651,7 +163651,7 @@ qQf qQf qQf fro -sVF +ixg tym jur vqi @@ -173210,7 +173210,7 @@ thA nxM imi nJd -lQi +aKA qck eJI nxM @@ -176556,7 +176556,7 @@ pHD qMz hjM xDU -cCc +iQy sBJ vLY qck @@ -177551,7 +177551,7 @@ fWU aak dMS vJL -pLC +nIh qqC oYx nCJ @@ -179133,7 +179133,7 @@ rmh ieF qHl rwG -dQA +bWv skJ owG hjM @@ -182430,7 +182430,7 @@ jre jre jre jre -jNE +rnD aCo hMw jre @@ -185243,7 +185243,7 @@ thA xMq tBs pwv -gtD +jRa yaP tBs nHQ @@ -187301,7 +187301,7 @@ pxg eRc tBs deP -peA +cXj pQw cBP wAv @@ -188081,7 +188081,7 @@ aIe wBA uJq smC -ygp +kBE hMr aUO aUO @@ -188850,7 +188850,7 @@ lry oTA hlS wrX -cvv +djT wBA oTA bAF @@ -220985,7 +220985,7 @@ egK nwT ccD aCJ -fVd +syN nsr xSl tKI @@ -223816,7 +223816,7 @@ tOw sVn wlt kEM -caf +cfb kEM vkW kEM @@ -225072,7 +225072,7 @@ qDI xQB whv rSe -hjA +iRu ckQ xJD lJO @@ -226943,7 +226943,7 @@ hjH pRj wwC rlj -pFX +aZg aPV gFH apj @@ -227451,7 +227451,7 @@ ujj pRj xoB hjH -hSY +khD dNC xBX pRj @@ -234126,7 +234126,7 @@ mZV paM bbo oKY -tOp +vxC iXk hHD pRj @@ -236621,7 +236621,7 @@ bxQ bUx vSh kBx -gal +wGM bui hfg lUw @@ -239203,7 +239203,7 @@ skl skl skl nTK -ngd +jfb cIK jOQ skl @@ -246412,7 +246412,7 @@ kKL kKL kKL kKL -lqp +txX dqy kKL lli @@ -246737,7 +246737,7 @@ cpl npD fWL qUM -qWB +mUx asN xhZ sZF @@ -250513,7 +250513,7 @@ bln bln kKL xpE -wKO +cZE wMT kKL lli @@ -250528,7 +250528,7 @@ kKL gkP kKL sqs -vHS +iuI ogd hff blV @@ -252826,7 +252826,7 @@ bln iyY jLc sEY -fli +dQV rEX rCf rCf @@ -254899,7 +254899,7 @@ oHH tAA efH mJu -rqR +cFm qPL qPL qPL @@ -255985,7 +255985,7 @@ rDZ pcX bgx jCl -hSn +ckY jCl vzD geJ @@ -258527,7 +258527,7 @@ mLJ opn vJk vJk -dGH +dpt vJk vJk qbW diff --git a/_maps/map_files/KiloStation/KiloStation.dmm b/_maps/map_files/KiloStation/KiloStation.dmm index 60ed81b02b25..82d5b0b16afd 100644 --- a/_maps/map_files/KiloStation/KiloStation.dmm +++ b/_maps/map_files/KiloStation/KiloStation.dmm @@ -494,11 +494,6 @@ /obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, /turf/closed/wall/rust, /area/station/engineering/atmos) -"aeN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/gary, -/turf/open/floor/iron/dark/textured, -/area/station/maintenance/starboard/fore) "aeS" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -2319,6 +2314,22 @@ /obj/structure/cable, /turf/open/floor/engine, /area/station/ai_monitored/turret_protected/aisat_interior) +"aKQ" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/table/wood/fancy/black, +/obj/item/book/bible{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/book/bible{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/book/bible, +/turf/open/floor/iron/dark, +/area/station/service/chapel) "aKY" = ( /obj/structure/sign/warning/electric_shock, /turf/closed/wall/r_wall, @@ -2690,6 +2701,20 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron, /area/station/engineering/atmos) +"aSP" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/item/book/bible, +/turf/open/floor/carpet/red, +/area/station/service/chapel) "aSX" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment, @@ -5261,12 +5286,6 @@ }, /turf/open/space/basic, /area/space) -"bNu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/landmark/start/gary/rare, -/turf/open/floor/iron/showroomfloor, -/area/station/commons/toilet/restrooms) "bNv" = ( /obj/machinery/telecomms/server/presets/common, /obj/machinery/light/directional/west, @@ -7335,22 +7354,6 @@ "cok" = ( /turf/closed/wall/r_wall, /area/space/nearstation) -"cop" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/table/wood/fancy/black, -/obj/item/storage/book/bible{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/storage/book/bible{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/storage/book/bible, -/turf/open/floor/iron/dark, -/area/station/service/chapel) "cos" = ( /obj/effect/turf_decal/box, /obj/effect/turf_decal/stripes/line{ @@ -12526,14 +12529,6 @@ }, /turf/open/floor/iron, /area/station/engineering/atmos/pumproom) -"eaB" = ( -/obj/effect/turf_decal/stripes/line{ - 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/hallway/primary/central/fore) "eaQ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/stripes/line{ @@ -12692,6 +12687,11 @@ }, /turf/open/floor/iron/showroomfloor, /area/station/science/genetics) +"edF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/plating, +/area/station/maintenance/department/bridge) "eeb" = ( /obj/effect/turf_decal/tile/blue{ dir = 8 @@ -13173,12 +13173,6 @@ /obj/effect/turf_decal/tile/neutral/half/contrasted, /turf/open/floor/iron/dark, /area/station/maintenance/department/crew_quarters/bar) -"elc" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/mapping_helpers/broken_floor, -/obj/effect/landmark/start/gary, -/turf/open/floor/wood, -/area/station/maintenance/starboard/fore) "ele" = ( /obj/structure/table/wood, /obj/machinery/door/firedoor, @@ -13298,6 +13292,17 @@ /obj/machinery/door/poddoor/incinerator_atmos_aux, /turf/open/floor/engine, /area/station/maintenance/disposal/incinerator) +"emV" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Biohazard"; + name = "Emergency Research Blast Door" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/science/research) "eng" = ( /obj/effect/turf_decal/tile/green, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -13949,10 +13954,6 @@ /obj/structure/closet/emcloset, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"eyl" = ( -/obj/effect/landmark/start/gary, -/turf/open/floor/wood, -/area/station/maintenance/port/fore) "eyv" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -14202,17 +14203,6 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/cargo/warehouse) -"eCI" = ( -/obj/machinery/asteroid_magnet{ - center_x = 176; - center_y = 174; - area_size = 3 - }, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/explab) "eCU" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 @@ -18155,12 +18145,6 @@ }, /turf/open/floor/grass, /area/station/science/genetics) -"fJr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/event_spawn, -/obj/effect/landmark/start/gary, -/turf/open/floor/carpet/green, -/area/station/maintenance/port/greater) "fJs" = ( /obj/machinery/door/airlock/external{ name = "Labor Camp Shuttle Airlock"; @@ -20104,11 +20088,6 @@ /obj/machinery/digital_clock/directional/south, /turf/open/floor/iron/dark, /area/station/hallway/secondary/exit/departure_lounge) -"gpk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/gary, -/turf/open/floor/plastic, -/area/station/maintenance/starboard/fore) "gpz" = ( /obj/structure/cable, /obj/effect/decal/cleanable/dirt, @@ -20487,6 +20466,18 @@ /obj/effect/turf_decal/tile/red, /turf/open/floor/iron, /area/station/engineering/lobby) +"guY" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Upload"; + location = "Science"; + name = "science navigation beacon" + }, +/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, +/turf/open/floor/iron, +/area/station/hallway/primary/central/fore) "gva" = ( /obj/structure/grille, /turf/closed/wall/r_wall/rust, @@ -26196,11 +26187,6 @@ }, /turf/open/floor/iron/dark, /area/station/service/janitor) -"igx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/generic, -/turf/open/floor/plating, -/area/station/maintenance/department/bridge) "igz" = ( /obj/structure/sink/directional/west, /obj/effect/turf_decal/stripes/corner, @@ -26307,6 +26293,17 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/security/office) +"iiM" = ( +/obj/machinery/asteroid_magnet{ + center_x = 176; + center_y = 174; + area_size = 3 + }, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/showroomfloor, +/area/station/science/explab) "ijc" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -26548,18 +26545,6 @@ }, /turf/open/floor/iron/showroomfloor, /area/station/medical/chemistry) -"imc" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Upload"; - location = "Science"; - name = "science navigation beacon" - }, -/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, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) "imh" = ( /turf/closed/wall/r_wall, /area/station/security/checkpoint/medical) @@ -32901,6 +32886,16 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/stone, /area/station/science/xenobiology) +"kio" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/tile/neutral/opposingcorners, +/obj/effect/landmark/start/gary/rare, +/turf/open/floor/iron/dark, +/area/station/service/library) "kir" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, @@ -38039,16 +38034,6 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron/dark, /area/station/security/processing) -"lSa" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/neutral/opposingcorners, -/obj/effect/landmark/start/gary/rare, -/turf/open/floor/iron/dark, -/area/station/service/library) "lSs" = ( /obj/structure/disposalpipe/segment{ dir = 10 @@ -38867,6 +38852,11 @@ /obj/structure/flora/bush/flowers_yw/style_random, /turf/open/floor/grass, /area/station/medical/pathology) +"mgq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/gary, +/turf/open/floor/plastic, +/area/station/maintenance/starboard/fore) "mgx" = ( /obj/structure/bookcase/random/nonfiction, /obj/machinery/computer/security/telescreen/entertainment/directional/north, @@ -41413,6 +41403,12 @@ /obj/machinery/disease2/centrifuge, /turf/open/floor/iron/dark, /area/station/medical/pathology) +"mVK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/landmark/start/gary/rare, +/turf/open/floor/iron/showroomfloor, +/area/station/commons/toilet/restrooms) "mVL" = ( /obj/structure/rack, /obj/effect/turf_decal/bot, @@ -42869,6 +42865,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/aft) +"nuv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/event_spawn, +/obj/effect/landmark/start/gary, +/turf/open/floor/carpet/green, +/area/station/maintenance/port/greater) "nuz" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -43282,14 +43284,6 @@ /obj/effect/turf_decal/stripes/corner, /turf/open/floor/engine, /area/station/ai_monitored/turret_protected/aisat/atmos) -"nAE" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/gary, -/turf/open/floor/plating, -/area/station/maintenance/department/bridge) "nAH" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment{ @@ -44121,20 +44115,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark/textured, /area/station/maintenance/starboard/fore) -"nMY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/blood/gibs/limb, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/effect/decal/cleanable/blood/tracks{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/gary, -/turf/open/floor/plating, -/area/station/maintenance/starboard) "nNb" = ( /obj/structure/lattice/catwalk, /turf/open/space/basic, @@ -44565,6 +44545,15 @@ }, /turf/open/floor/iron/dark/herringbone, /area/station/security/prison) +"nVX" = ( +/obj/effect/landmark/generic_maintenance_landmark, +/obj/effect/landmark/blobstart, +/obj/effect/landmark/event_spawn, +/obj/effect/spawner/random/trash/mess, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/landmark/start/gary, +/turf/open/floor/plating, +/area/station/maintenance/department/crew_quarters/bar) "nWg" = ( /obj/item/radio/intercom/directional/east, /obj/effect/turf_decal/siding/purple/corner{ @@ -46300,6 +46289,12 @@ }, /turf/open/floor/iron/dark, /area/station/engineering/main) +"oCp" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/landmark/start/gary, +/turf/open/floor/wood, +/area/station/maintenance/starboard/fore) "oCt" = ( /obj/machinery/airalarm/directional/east, /obj/structure/cable, @@ -46772,6 +46767,14 @@ /obj/structure/lattice, /turf/open/space/basic, /area/space/nearstation) +"oLF" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/gary, +/turf/open/floor/plating, +/area/station/maintenance/department/bridge) "oLG" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/stripes/line, @@ -49478,20 +49481,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/station/cargo/warehouse) -"pCX" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/effect/turf_decal/siding/wood/corner{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/item/storage/book/bible, -/turf/open/floor/carpet/red, -/area/station/service/chapel) "pDa" = ( /obj/effect/turf_decal/stripes/white/line{ dir = 8 @@ -50336,20 +50325,6 @@ /obj/effect/decal/cleanable/blood/old, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) -"pPw" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/effect/turf_decal/siding/wood/corner{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/item/storage/book/bible, -/turf/open/floor/carpet/red, -/area/station/service/chapel) "pPC" = ( /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, /obj/effect/decal/cleanable/dirt, @@ -55811,15 +55786,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/security/processing) -"ryL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/generic_maintenance_landmark, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/landmark/start/gary, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard) "ryW" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment, @@ -56845,6 +56811,20 @@ }, /turf/open/floor/iron/dark, /area/station/science/research) +"rPW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/generic_maintenance_landmark, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/landmark/start/gary, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard) +"rQo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/gary, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/starboard/fore) "rQC" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/effect/decal/cleanable/dirt, @@ -58256,6 +58236,14 @@ /obj/machinery/light/directional/north, /turf/open/floor/iron, /area/station/cargo/storage) +"smh" = ( +/obj/effect/turf_decal/stripes/line{ + 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/hallway/primary/central/fore) "smi" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -68947,6 +68935,20 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/showroomfloor, /area/station/science/explab) +"vDT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/blood/gibs/limb, +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/gary, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "vDU" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -69150,6 +69152,20 @@ /obj/machinery/light/small/directional/west, /turf/open/floor/wood, /area/station/commons/fitness/recreation) +"vGS" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/item/book/bible, +/turf/open/floor/carpet/red, +/area/station/service/chapel) "vGY" = ( /obj/machinery/light/directional/east, /obj/machinery/newscaster/directional/north, @@ -73531,17 +73547,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/glass, /area/station/maintenance/starboard) -"wSW" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Biohazard"; - name = "Emergency Research Blast Door" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/science/research) "wSY" = ( /obj/machinery/camera/directional/south{ c_tag = "Satellite Antechamber"; @@ -76399,6 +76404,20 @@ /obj/effect/mapping_helpers/airlock/access/all/engineering/ce, /turf/open/floor/iron/dark, /area/station/command/heads_quarters/ce) +"xRs" = ( +/obj/machinery/door/airlock/research{ + id_tag = "ResearchInt"; + name = "Research Division" + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/effect/landmark/navigate_destination, +/obj/effect/mapping_helpers/airlock/access/all/science/general, +/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/science/research) "xRv" = ( /obj/machinery/recharge_station, /obj/structure/cable, @@ -76665,20 +76684,6 @@ /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating, /area/station/maintenance/fore) -"xVy" = ( -/obj/machinery/door/airlock/research{ - id_tag = "ResearchInt"; - name = "Research Division" - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/landmark/navigate_destination, -/obj/effect/mapping_helpers/airlock/access/all/science/general, -/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/science/research) "xVz" = ( /obj/structure/chair/comfy/brown, /obj/effect/spawner/random/maintenance, @@ -77045,15 +77050,6 @@ }, /turf/open/floor/iron/showroomfloor, /area/station/medical/pathology) -"yaC" = ( -/obj/effect/landmark/generic_maintenance_landmark, -/obj/effect/landmark/blobstart, -/obj/effect/landmark/event_spawn, -/obj/effect/spawner/random/trash/mess, -/obj/effect/mapping_helpers/broken_floor, -/obj/effect/landmark/start/gary, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) "yaE" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -77243,6 +77239,10 @@ }, /turf/open/floor/iron/showroomfloor, /area/station/medical/cryo) +"ydf" = ( +/obj/effect/landmark/start/gary, +/turf/open/floor/wood, +/area/station/maintenance/port/fore) "ydw" = ( /obj/effect/turf_decal/tile/yellow{ dir = 8 @@ -89215,7 +89215,7 @@ iMx gnh slr rqG -cop +aKQ tiv rfg vtv @@ -89261,7 +89261,7 @@ whj jKJ vjh jeZ -fJr +nuv kJx paM fvr @@ -89464,11 +89464,11 @@ vmZ vmZ vEv pUb -pPw +vGS jAu qbE jAu -pCX +aSP gnp rxp vrs @@ -95668,7 +95668,7 @@ aeu pVz mkI uHc -eyl +ydf jQR hCV xAK @@ -102090,7 +102090,7 @@ uNO uNO uNO aIh -bNu +mVK qrv sGj xqJ @@ -102377,7 +102377,7 @@ eOl oJV rzr rYK -lSa +kio xcJ krw fgo @@ -103410,7 +103410,7 @@ wpN jCm xVz jVG -yaC +nVX dAU mkB bEe @@ -109836,7 +109836,7 @@ xPk wtb gfJ bXX -igx +edF wcV tmD fbF @@ -110092,7 +110092,7 @@ guc pyJ gka jeL -nAE +oLF fiy hMZ ygj @@ -110301,7 +110301,7 @@ mOH lyC mzc kCx -aeN +rQo agx izu kXh @@ -110577,7 +110577,7 @@ cIX fvU nUi iVF -elc +oCp hIs jre rsZ @@ -112362,7 +112362,7 @@ wsa lRk oTm dIi -gpk +mgq dIi fvU vBv @@ -114190,7 +114190,7 @@ nJK moD oQH cMj -imc +guY xwn txl vPd @@ -114447,7 +114447,7 @@ vqN bBF vMG maj -eaB +smh ayh byK mCt @@ -114704,7 +114704,7 @@ jBh bBF sxB kBP -wSW +emV kBP vFY ofs @@ -114961,7 +114961,7 @@ wWD wdf sxB sQT -xVy +xRs sxB aND xDM @@ -119055,7 +119055,7 @@ rZV rZV ceu gnE -nMY +vDT mCL vOX rZV @@ -120340,7 +120340,7 @@ ryj seS uUc gqZ -ryL +rPW xoJ tgo uVQ @@ -122895,7 +122895,7 @@ cBp cBp oRy bsf -eCI +iiM nCZ tiL izr diff --git a/_maps/map_files/MetaStation/MetaStation.dmm b/_maps/map_files/MetaStation/MetaStation.dmm index 0bb1e07b89dd..68aff567a7b1 100644 --- a/_maps/map_files/MetaStation/MetaStation.dmm +++ b/_maps/map_files/MetaStation/MetaStation.dmm @@ -318,6 +318,11 @@ /obj/machinery/atmospherics/pipe/smart/simple/purple/visible, /turf/open/floor/iron, /area/station/engineering/atmos/pumproom) +"ags" = ( +/obj/item/book/bible, +/obj/structure/altar_of_gods, +/turf/open/floor/iron/dark, +/area/station/service/chapel) "agN" = ( /obj/structure/table/glass, /obj/item/radio/intercom/directional/west, @@ -3878,15 +3883,6 @@ dir = 4 }, /area/station/service/chapel) -"bpl" = ( -/obj/structure/noticeboard/directional/north{ - desc = "A memorial wall for pinning mementos upon."; - name = "memorial board" - }, -/obj/item/storage/book/bible, -/obj/structure/table/wood, -/turf/open/floor/carpet, -/area/station/service/chapel/funeral) "bpu" = ( /obj/machinery/airalarm/directional/north, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, @@ -4821,12 +4817,6 @@ }, /turf/open/floor/sandy_dirt, /area/station/service/hydroponics) -"bJC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/gary, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "bJQ" = ( /obj/machinery/vending/coffee, /obj/effect/turf_decal/bot, @@ -5774,6 +5764,14 @@ dir = 1 }, /area/station/security/prison) +"cgj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/start/gary/uncommon, +/turf/open/floor/plating, +/area/station/medical/abandoned) "cgF" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -7409,13 +7407,6 @@ /obj/machinery/firealarm/directional/west, /turf/open/floor/plating, /area/station/cargo/drone_bay) -"cLS" = ( -/obj/structure/chair/office, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/hangover, -/obj/effect/landmark/start/gary/rare, -/turf/open/floor/wood, -/area/station/service/library) "cMb" = ( /obj/effect/turf_decal/stripes/line, /obj/structure/cable, @@ -7426,14 +7417,6 @@ /obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, /turf/open/floor/iron, /area/station/engineering/atmos/pumproom) -"cMN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/start/gary/uncommon, -/turf/open/floor/plating, -/area/station/medical/abandoned) "cMQ" = ( /obj/machinery/door/poddoor/shutters/preopen{ id = "hopqueue"; @@ -7658,10 +7641,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/hallway/secondary/entry) -"cRs" = ( -/obj/effect/landmark/start/gary, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) "cRC" = ( /obj/machinery/light/small/directional/south, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -10881,6 +10860,24 @@ /obj/effect/turf_decal/tile/blue/fourcorners, /turf/open/floor/iron, /area/station/hallway/primary/central) +"eaq" = ( +/obj/structure/table, +/obj/item/stack/ducts/fifty, +/obj/item/stack/ducts/fifty, +/obj/item/stack/ducts/fifty, +/obj/item/stack/ducts/fifty, +/obj/item/stack/ducts/fifty, +/obj/item/stack/ducts/fifty, +/obj/item/stack/ducts/fifty, +/obj/item/stack/ducts/fifty, +/obj/item/plunger, +/obj/item/plunger, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/obj/item/construction/plumbing, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) "eau" = ( /obj/effect/turf_decal/trimline/neutral/filled/corner{ dir = 8 @@ -12901,6 +12898,13 @@ }, /turf/closed/wall/r_wall, /area/station/hallway/secondary/command) +"eMe" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/landmark/start/gary, +/turf/open/floor/plating, +/area/station/maintenance/fore) "eMG" = ( /obj/structure/closet/lasertag/blue, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -12978,14 +12982,6 @@ /obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron/dark/telecomms, /area/station/tcommsat/server) -"eNH" = ( -/obj/effect/landmark/generic_maintenance_landmark, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/landmark/start/gary, -/turf/open/floor/plating, -/area/station/maintenance/fore) "eNR" = ( /turf/closed/wall, /area/station/ai_monitored/aisat/exterior) @@ -13079,24 +13075,6 @@ }, /turf/open/floor/iron/dark, /area/station/ai_monitored/turret_protected/ai_upload) -"eQm" = ( -/obj/structure/table, -/obj/item/stack/ducts/fifty, -/obj/item/stack/ducts/fifty, -/obj/item/stack/ducts/fifty, -/obj/item/stack/ducts/fifty, -/obj/item/stack/ducts/fifty, -/obj/item/stack/ducts/fifty, -/obj/item/stack/ducts/fifty, -/obj/item/stack/ducts/fifty, -/obj/item/plunger, -/obj/item/plunger, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 - }, -/obj/item/construction/plumbing, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) "eQs" = ( /obj/machinery/air_sensor/air_tank, /turf/open/floor/engine/air, @@ -13356,6 +13334,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/commons/locker) +"eVJ" = ( +/obj/item/storage/toolbox/emergency, +/obj/effect/mapping_helpers/burnt_floor, +/obj/effect/landmark/start/gary, +/turf/open/floor/plating, +/area/station/maintenance/port) "eVX" = ( /obj/machinery/firealarm/directional/west, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -14710,14 +14694,6 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/station/engineering/atmospherics_engine) -"fuy" = ( -/obj/machinery/light/small/directional/south, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/effect/landmark/start/gary/rare, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/restrooms) "fuA" = ( /obj/effect/turf_decal/trimline/blue/filled/line, /obj/structure/cable, @@ -14727,11 +14703,6 @@ }, /turf/open/floor/iron/white, /area/station/medical/medbay/central) -"fvb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/gary, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "fvB" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -16145,6 +16116,11 @@ }, /turf/open/floor/iron/dark/textured, /area/station/engineering/atmos) +"fXz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/gary, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) "fXK" = ( /obj/effect/turf_decal/trimline/red/filled/corner{ dir = 8 @@ -24667,6 +24643,14 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/service) +"iNS" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/effect/landmark/start/gary/rare, +/turf/open/floor/iron/freezer, +/area/station/commons/toilet/restrooms) "iOc" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -26623,13 +26607,6 @@ }, /turf/open/floor/iron/white, /area/station/medical/surgery/aft) -"jue" = ( -/obj/effect/spawner/random/trash/garbage{ - spawn_scatter_radius = 1 - }, -/obj/effect/landmark/start/gary, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) "juf" = ( /obj/machinery/telecomms/bus/preset_two, /turf/open/floor/circuit/telecomms/mainframe, @@ -29430,14 +29407,6 @@ /obj/effect/landmark/generic_maintenance_landmark, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) -"ksK" = ( -/obj/effect/landmark/generic_maintenance_landmark, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/landmark/start/gary, -/turf/open/floor/plating, -/area/station/maintenance/port) "ksT" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment{ @@ -30981,6 +30950,10 @@ }, /turf/open/floor/iron, /area/station/engineering/break_room) +"kVM" = ( +/obj/effect/landmark/start/gary, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft) "kVN" = ( /turf/open/floor/carpet, /area/station/service/chapel) @@ -35036,10 +35009,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/station/maintenance/fore) -"mst" = ( -/obj/effect/landmark/start/gary, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) "msI" = ( /turf/closed/wall, /area/station/security/bitden) @@ -35672,6 +35641,15 @@ /obj/item/kirbyplants/random/dead, /turf/open/floor/iron/dark, /area/station/command/heads_quarters/rd) +"mCz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/landmark/start/gary/uncommon, +/turf/open/floor/iron, +/area/station/cargo/drone_bay) "mCL" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, @@ -36654,12 +36632,22 @@ /obj/effect/turf_decal/trimline/brown/filled/line, /turf/open/floor/iron, /area/station/cargo/miningoffice) +"mUE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/gary, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) "mUF" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 }, /turf/open/floor/iron, /area/station/cargo/drone_bay) +"mUI" = ( +/obj/effect/landmark/start/gary, +/turf/open/floor/wood, +/area/station/maintenance/port/aft) "mUL" = ( /obj/machinery/door/airlock/atmos{ name = "Hypertorus Fusion Reactor" @@ -36814,15 +36802,6 @@ /obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/aft) -"mWY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/landmark/start/gary/uncommon, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) "mWZ" = ( /obj/item/folder/red, /obj/item/pen, @@ -37153,6 +37132,13 @@ }, /turf/open/floor/iron/dark/textured, /area/station/medical/pathology) +"nbq" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/effect/landmark/start/gary/uncommon, +/turf/open/floor/wood, +/area/station/smithing) "nbs" = ( /obj/effect/turf_decal/delivery, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -41246,6 +41232,13 @@ }, /turf/open/floor/plating, /area/station/commons/toilet/auxiliary) +"oyB" = ( +/obj/structure/chair/office, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/hangover, +/obj/effect/landmark/start/gary/rare, +/turf/open/floor/wood, +/area/station/service/library) "oyO" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -43883,11 +43876,6 @@ /obj/machinery/telecomms/processor/preset_four, /turf/open/floor/circuit/telecomms/mainframe, /area/station/tcommsat/server) -"pwq" = ( -/obj/item/storage/book/bible, -/obj/structure/altar_of_gods, -/turf/open/floor/iron/dark, -/area/station/service/chapel) "pwx" = ( /obj/structure/chair{ dir = 4 @@ -46700,6 +46688,14 @@ /obj/machinery/suit_storage_unit/standard_unit, /turf/open/floor/iron/dark, /area/station/maintenance/aft/lesser) +"qvo" = ( +/obj/effect/landmark/generic_maintenance_landmark, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/landmark/start/gary, +/turf/open/floor/plating, +/area/station/maintenance/port) "qvJ" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -47134,12 +47130,6 @@ /obj/machinery/computer/records/medical/laptop, /turf/open/floor/iron/white, /area/station/security/medical) -"qDD" = ( -/obj/item/storage/toolbox/emergency, -/obj/effect/mapping_helpers/burnt_floor, -/obj/effect/landmark/start/gary, -/turf/open/floor/plating, -/area/station/maintenance/port) "qDI" = ( /obj/effect/turf_decal/trimline/green/filled/line, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -49180,6 +49170,13 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/carpet, /area/station/service/theater) +"rqf" = ( +/obj/effect/spawner/random/trash/garbage{ + spawn_scatter_radius = 1 + }, +/obj/effect/landmark/start/gary, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) "rqT" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -49523,14 +49520,6 @@ /obj/machinery/light_switch/directional/south, /turf/open/floor/iron/dark, /area/station/engineering/storage/tech) -"rwB" = ( -/obj/effect/landmark/generic_maintenance_landmark, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/landmark/start/gary, -/turf/open/floor/plating, -/area/station/maintenance/port) "rwE" = ( /obj/structure/table, /obj/item/paper_bin{ @@ -51660,6 +51649,10 @@ /obj/structure/sign/directions/evac, /turf/closed/wall/r_wall, /area/station/hallway/primary/aft) +"seP" = ( +/obj/effect/landmark/start/gary, +/turf/open/floor/plating, +/area/station/maintenance/starboard/greater) "sfg" = ( /obj/structure/cable, /obj/effect/turf_decal/trimline/red/filled/line{ @@ -52316,17 +52309,6 @@ /obj/item/radio/intercom/prison/directional/north, /turf/open/floor/iron, /area/station/security/execution/transfer) -"ssi" = ( -/obj/item/storage/book/bible, -/obj/machinery/light/small/directional/north, -/obj/machinery/newscaster/directional/north, -/obj/machinery/camera/directional/north{ - c_tag = "Chapel - Fore" - }, -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/chapel) "ssk" = ( /obj/structure/table/reinforced, /obj/item/book/manual/wiki/engineering_hacking{ @@ -53323,13 +53305,6 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/fore) -"sKo" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/landmark/start/gary, -/turf/open/floor/plating, -/area/station/maintenance/fore) "sKr" = ( /obj/structure/window/spawner/directional/south, /obj/structure/window/spawner/directional/east, @@ -54417,6 +54392,14 @@ }, /turf/open/floor/iron/dark, /area/station/medical/morgue) +"tcK" = ( +/obj/effect/landmark/generic_maintenance_landmark, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/landmark/start/gary, +/turf/open/floor/plating, +/area/station/maintenance/fore) "tcN" = ( /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -56942,10 +56925,6 @@ }, /turf/open/floor/iron/checker, /area/station/engineering/atmos/storage/gas) -"tYI" = ( -/obj/effect/landmark/start/gary, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) "tYO" = ( /obj/structure/cable, /obj/effect/mapping_helpers/airlock/access/all/science/rd, @@ -57668,6 +57647,14 @@ /obj/structure/fans/tiny, /turf/open/floor/plating, /area/station/service/chapel/funeral) +"ulG" = ( +/obj/effect/landmark/generic_maintenance_landmark, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/landmark/start/gary, +/turf/open/floor/plating, +/area/station/maintenance/port) "ulQ" = ( /obj/effect/turf_decal/tile/yellow/half/contrasted{ dir = 1 @@ -62802,6 +62789,15 @@ }, /turf/open/floor/sandy_dirt, /area/station/service/hydroponics) +"wdV" = ( +/obj/structure/noticeboard/directional/north{ + desc = "A memorial wall for pinning mementos upon."; + name = "memorial board" + }, +/obj/item/book/bible, +/obj/structure/table/wood, +/turf/open/floor/carpet, +/area/station/service/chapel/funeral) "wen" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment, @@ -65628,6 +65624,17 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/ai_monitored/aisat/exterior) +"xez" = ( +/obj/item/book/bible, +/obj/machinery/light/small/directional/north, +/obj/machinery/newscaster/directional/north, +/obj/machinery/camera/directional/north{ + c_tag = "Chapel - Fore" + }, +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/service/chapel) "xeN" = ( /obj/structure/cable, /obj/effect/turf_decal/stripes/line{ @@ -65854,13 +65861,10 @@ "xhh" = ( /turf/open/floor/plating/airless, /area/station/science/ordnance/bomb) -"xij" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 5 - }, -/obj/effect/landmark/start/gary/uncommon, -/turf/open/floor/wood, -/area/station/smithing) +"xin" = ( +/obj/effect/landmark/start/gary, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) "xip" = ( /obj/machinery/portable_atmospherics/canister/nitrous_oxide, /obj/effect/turf_decal/bot, @@ -65939,10 +65943,6 @@ }, /turf/open/floor/circuit/green, /area/station/ai_monitored/turret_protected/ai) -"xjd" = ( -/obj/effect/landmark/start/gary, -/turf/open/floor/wood, -/area/station/maintenance/port/aft) "xjh" = ( /turf/closed/wall, /area/station/security/checkpoint/customs) @@ -82948,7 +82948,7 @@ igV nLG pOa clp -qDD +eVJ jmJ pOa uEO @@ -83219,7 +83219,7 @@ pOa pOa jUb xqn -xjd +mUI fQZ ehv sBL @@ -83729,7 +83729,7 @@ sTq cMb fFu wvr -ksK +ulG tYi jUb eov @@ -84235,7 +84235,7 @@ tON kEm xnr stL -xij +nbq lsu qLP pOa @@ -85541,7 +85541,7 @@ jUb xRB dqN dqN -tYI +xin cNS eNV dqN @@ -86035,7 +86035,7 @@ tmI fjD pOa cIW -rwB +qvo tYi vXH pOa @@ -88608,7 +88608,7 @@ kFM kFM ilC prD -cLS +oyB lIa xjC pOa @@ -88647,7 +88647,7 @@ xGk tBJ xOP ijF -cMN +cgj mMO hdo hzG @@ -88810,7 +88810,7 @@ tdg hkj hkj kuW -mWY +mCz vKg mUF obF @@ -90097,7 +90097,7 @@ aaa jXu uUu oCd -jue +rqf bPM jXu loQ @@ -90203,7 +90203,7 @@ aMf xUX yjW vQg -bpl +wdV hto bnH dLy @@ -91997,7 +91997,7 @@ jJY iDN xtz tSw -ssi +xez iJj uZD hKv @@ -92518,7 +92518,7 @@ phR phR wjV phR -pwq +ags fkT cXw rRZ @@ -95573,7 +95573,7 @@ fvE kKT fBG wPH -eQm +eaq drW jxm bcr @@ -102686,7 +102686,7 @@ aaa ilh cur cur -eNH +tcK cur ilh rlp @@ -102702,7 +102702,7 @@ ilh ilh ilh dKO -fuy +iNS dIO dIO dIO @@ -103207,7 +103207,7 @@ fEW ilh ssJ msd -sKo +eMe cur sab ilh @@ -105868,7 +105868,7 @@ arg hIZ qlG fPD -mst +kVM eQY fPD nTd @@ -108090,7 +108090,7 @@ qhy qXB dOx jCw -fvb +fXz tjL aGe mFm @@ -109167,7 +109167,7 @@ eol fWA dxk cNm -cRs +seP ret qHO bNn @@ -109886,7 +109886,7 @@ cyS izd jlM jlM -bJC +mUE kXx aIC kVs diff --git a/_maps/map_files/NorthStar/north_star.dmm b/_maps/map_files/NorthStar/north_star.dmm index 66097eb7d222..2dbec2c4c201 100644 --- a/_maps/map_files/NorthStar/north_star.dmm +++ b/_maps/map_files/NorthStar/north_star.dmm @@ -179,11 +179,6 @@ /obj/machinery/light/dim/directional/north, /turf/open/floor/catwalk_floor, /area/station/maintenance/floor3/port/aft) -"abJ" = ( -/obj/machinery/light_switch/directional/north, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/station/maintenance/floor3/starboard/aft) "abP" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -221,13 +216,11 @@ /obj/structure/flora/bush/sparsegrass/style_random, /turf/open/floor/grass, /area/station/medical/virology) -"acj" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/holopad, -/obj/effect/landmark/navigate_destination/dockarrival, -/obj/machinery/atm/directional/south, -/turf/open/floor/iron/textured_large, -/area/station/hallway/secondary/entry) +"acf" = ( +/obj/structure/window/reinforced/tinted/frosted/spawner/directional/west, +/obj/structure/window/reinforced/tinted/frosted/spawner/directional/north, +/turf/open/openspace, +/area/station/maintenance/floor2/port) "acl" = ( /obj/structure/railing{ dir = 8 @@ -271,11 +264,6 @@ dir = 8 }, /area/station/command/bridge) -"acE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/barricade, -/turf/open/floor/pod/light, -/area/station/maintenance/floor2/port/aft) "acF" = ( /obj/effect/turf_decal/tile/purple/opposingcorners, /obj/structure/chair/office/light{ @@ -464,6 +452,10 @@ /obj/machinery/computer/rdconsole, /turf/open/floor/iron/dark, /area/station/command/heads_quarters/rd) +"afA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/turret_protected/aisat/service) "afE" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -571,11 +563,15 @@ name = "lab floor" }, /area/station/science/genetics) -"ahh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/emcloset, -/turf/open/floor/pod/light, -/area/station/maintenance/floor2/port/aft) +"ahr" = ( +/obj/structure/window/reinforced/plasma/spawner/directional/south, +/obj/structure/window/reinforced/plasma/spawner/directional/north, +/obj/structure/window/reinforced/plasma/spawner/directional/west, +/obj/machinery/power/shuttle_engine/heater{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/maintenance/floor1/port/aft) "aht" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -585,11 +581,6 @@ /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 @@ -654,6 +645,11 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron/cafeteria, /area/station/security/prison) +"aij" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/pod/light, +/area/station/maintenance/floor3/port/aft) "aik" = ( /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible/layer2{ dir = 4 @@ -671,6 +667,12 @@ /obj/structure/sign/departments/restroom/directional/east, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/floor3/fore) +"ain" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/lead_pipe, +/obj/structure/closet/cardboard/metal, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard/fore) "air" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -688,6 +690,13 @@ /obj/machinery/light/dim/directional/west, /turf/open/floor/pod/dark, /area/station/maintenance/floor2/port/aft) +"aiJ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/medical/abandoned) "aiL" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -741,6 +750,14 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/side, /area/station/cargo/lobby) +"aja" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/pod/dark, +/area/station/maintenance/floor4/starboard) "ajb" = ( /turf/open/floor/iron/dark, /area/station/maintenance/floor2/starboard/aft) @@ -777,6 +794,13 @@ /obj/structure/table, /turf/open/floor/iron/dark, /area/station/commons/storage/primary) +"ajz" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible/layer2{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/engineering/atmos) "ajE" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -867,6 +891,12 @@ dir = 1 }, /area/station/security/office) +"akS" = ( +/obj/structure/rack, +/obj/machinery/light/small/directional/east, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/station/maintenance/floor3/starboard/aft) "ala" = ( /obj/structure/railing{ dir = 4 @@ -916,14 +946,6 @@ /obj/effect/turf_decal/tile/purple/opposingcorners, /turf/open/floor/iron/white, /area/station/command/heads_quarters/rd) -"amf" = ( -/obj/machinery/light/directional/south, -/obj/effect/decal/cleanable/blood/footprints{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/floor3/starboard/aft) "amg" = ( /obj/structure/cable, /obj/machinery/power/apc/auto_name/directional/east, @@ -1046,17 +1068,15 @@ /obj/effect/turf_decal/siding, /turf/open/floor/iron/white, /area/station/command/heads_quarters/rd) -"anH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark/corner{ - dir = 1 +"anE" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 }, -/area/station/hallway/secondary/exit/escape_pod) +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/flashlight/flare, +/turf/open/floor/engine, +/area/station/maintenance/floor4/starboard/aft) "anK" = ( /obj/machinery/atmospherics/components/trinary/mixer/flipped{ dir = 4 @@ -1125,6 +1145,16 @@ /obj/structure/grille, /turf/open/floor/plating, /area/station/maintenance/floor3/port) +"aoS" = ( +/obj/effect/turf_decal/tile/green/half{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured_half{ + dir = 1 + }, +/area/station/hallway/secondary/exit/escape_pod) "aoW" = ( /obj/effect/turf_decal/tile/neutral/opposingcorners{ dir = 8 @@ -1189,6 +1219,18 @@ }, /turf/open/floor/iron/dark, /area/station/science/circuits) +"aps" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/door/window/brigdoor/right/directional/west{ + name = "Shooting Range" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/range) "apu" = ( /obj/machinery/camera/directional/west{ c_tag = "Science - Radshelter" @@ -1281,6 +1323,13 @@ /obj/effect/spawner/random/trash/soap, /turf/open/floor/pod/light, /area/station/maintenance/floor1/port/fore) +"aqF" = ( +/obj/effect/spawner/random/trash/garbage{ + spawn_scatter_radius = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/port) "aqO" = ( /obj/machinery/door/airlock/security/glass{ name = "Brig Fore Entrance" @@ -1300,11 +1349,6 @@ dir = 1 }, /area/station/cargo/sorting) -"aqU" = ( -/obj/effect/decal/cleanable/oil, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/circuit/telecomms, -/area/station/tcommsat/server/upper) "aqW" = ( /obj/effect/turf_decal/trimline/green/filled/arrow_cw{ dir = 1 @@ -1456,24 +1500,6 @@ /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, @@ -1595,6 +1621,11 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/station/medical/psychology) +"aud" = ( +/obj/machinery/light/small/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/red, +/area/station/maintenance/floor3/port/aft) "aug" = ( /obj/effect/spawner/structure/window/hollow/reinforced/directional{ dir = 1 @@ -1679,11 +1710,6 @@ /obj/structure/hedge, /turf/open/floor/wood/tile, /area/station/science/lobby) -"avf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/glass, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard/aft) "avg" = ( /obj/machinery/atmospherics/pipe/smart/simple/yellow/visible/layer2{ dir = 4 @@ -1779,10 +1805,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/station/hallway/floor3/aft) -"awo" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/white, -/area/station/medical/abandoned) "awt" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -1792,11 +1814,6 @@ /obj/item/screwdriver, /turf/open/floor/pod/dark, /area/station/maintenance/floor2/starboard/aft) -"awH" = ( -/obj/effect/decal/cleanable/glass, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard/fore) "awT" = ( /obj/structure/window/spawner/directional/west, /obj/effect/turf_decal/siding/wood{ @@ -1830,21 +1847,6 @@ }, /turf/open/floor/pod/dark, /area/station/maintenance/floor2/starboard/aft) -"axn" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 10 - }, -/obj/structure/window/reinforced/tinted/spawner/directional/west, -/turf/open/floor/wood, -/area/station/commons/vacant_room/office) -"axz" = ( -/obj/effect/spawner/random/vending/colavend, -/obj/structure/sign/poster/official/cleanliness/directional/east, -/turf/open/floor/iron/dark/smooth_large, -/area/station/hallway/secondary/entry) "axF" = ( /obj/machinery/gateway/centerstation, /turf/open/floor/iron/large, @@ -1855,13 +1857,6 @@ }, /turf/open/floor/iron/dark, /area/station/maintenance/floor2/starboard/aft) -"axP" = ( -/obj/structure/closet/crate/large, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/station/maintenance/floor3/starboard/aft) "axR" = ( /obj/structure/chair/stool/bar/directional/north, /obj/effect/landmark/start/scientist, @@ -1910,6 +1905,12 @@ /obj/machinery/duct, /turf/open/floor/iron, /area/station/service/chapel) +"ayp" = ( +/obj/effect/turf_decal/trimline/blue/line, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server/upper) "ayv" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 8 @@ -1925,6 +1926,15 @@ }, /turf/open/floor/iron/dark, /area/station/hallway/floor1/fore) +"ayw" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/airalarm/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/floor2/starboard) "ayB" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/smart/simple/green/visible, @@ -1944,6 +1954,17 @@ /obj/structure/sign/warning/docking, /turf/closed/wall/r_wall, /area/station/security/execution/transfer) +"ayK" = ( +/obj/structure/closet/firecloset, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor3/port/fore) +"ayP" = ( +/obj/structure/window/plasma/spawner/directional/east, +/obj/structure/window/plasma/spawner/directional/south, +/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on, +/turf/open/floor/plating, +/area/station/science/server) "ayR" = ( /obj/structure/industrial_lift/public, /obj/effect/landmark/lift_id{ @@ -1951,11 +1972,6 @@ }, /turf/open/floor/plating/elevatorshaft, /area/station/hallway/floor1/fore) -"ayU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/dim/directional/east, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/port) "ayW" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/simple, /obj/effect/turf_decal/stripes/corner, @@ -1980,6 +1996,16 @@ }, /turf/open/floor/plating/airless, /area/space/nearstation) +"ayZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/tracks, +/turf/open/floor/engine, +/area/station/maintenance/floor4/starboard/aft) +"azc" = ( +/obj/effect/spawner/random/maintenance, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/maintenance/floor2/starboard/fore) "aze" = ( /obj/structure/railing{ dir = 1 @@ -2001,15 +2027,6 @@ dir = 4 }, /area/station/science/lobby) -"azp" = ( -/obj/structure/window/reinforced/tinted/spawner/directional/south, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron/dark/textured, -/area/station/medical/morgue) "azu" = ( /obj/structure/table/wood, /obj/item/gun/ballistic/shotgun/doublebarrel, @@ -2026,6 +2043,14 @@ name = "lab floor" }, /area/station/science/genetics) +"azE" = ( +/obj/effect/turf_decal/trimline/red/line{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard/aft) "azF" = ( /obj/effect/turf_decal/siding/purple/corner{ dir = 1 @@ -2099,6 +2124,11 @@ /obj/machinery/camera/autoname/directional/north, /turf/open/floor/iron, /area/station/hallway/floor3/aft) +"aAA" = ( +/obj/effect/decal/cleanable/oil, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/engineering/lobby) "aAB" = ( /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ dir = 10 @@ -2153,6 +2183,14 @@ /obj/structure/rack, /turf/open/floor/pod/dark, /area/station/maintenance/floor2/starboard/aft) +"aBz" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/structure/closet_maintenance, +/turf/open/floor/pod/light, +/area/station/maintenance/floor2/port/aft) "aBC" = ( /obj/effect/turf_decal/siding/purple{ dir = 8 @@ -2176,11 +2214,13 @@ }, /turf/open/floor/pod/light, /area/station/maintenance/floor2/port/fore) -"aBR" = ( -/obj/item/wrench, -/obj/structure/rack, +"aBM" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/generic_maintenance_landmark, +/turf/open/floor/wood/large, /area/station/maintenance/floor4/starboard/aft) "aBV" = ( /obj/effect/turf_decal/trimline/blue/end, @@ -2212,6 +2252,15 @@ name = "lab floor" }, /area/station/science/genetics) +"aCg" = ( +/obj/structure/cable, +/obj/structure/table/reinforced, +/obj/item/storage/fancy/donut_box, +/obj/machinery/atm/directional/north, +/turf/open/floor/iron/half{ + dir = 1 + }, +/area/station/engineering/lobby) "aCq" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 @@ -2290,11 +2339,6 @@ }, /turf/open/floor/plating, /area/station/maintenance/floor1/starboard/fore) -"aDl" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/atm/directional/north, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit/departure_lounge) "aDn" = ( /obj/machinery/door/airlock/external{ name = "External Airlock" @@ -2314,10 +2358,6 @@ /obj/structure/chair/comfy/black, /turf/open/floor/iron/dark, /area/station/command/heads_quarters/cmo) -"aDq" = ( -/obj/structure/window/reinforced/tinted/frosted/spawner/directional/east, -/turf/open/openspace, -/area/station/maintenance/floor4/port/aft) "aDr" = ( /obj/structure/chair/office, /obj/effect/turf_decal/tile/red/half/contrasted, @@ -2333,6 +2373,13 @@ name = "lab floor" }, /area/station/science/genetics) +"aDw" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured_large, +/area/station/hallway/secondary/exit/departure_lounge) "aDx" = ( /turf/open/floor/iron, /area/station/engineering/atmos/hfr_room) @@ -2469,14 +2516,6 @@ "aFj" = ( /turf/closed/wall/r_wall, /area/station/ai_monitored/turret_protected/aisat/service) -"aFn" = ( -/obj/structure/flora/bush/sparsegrass/style_random, -/obj/structure/flora/bush/flowers_br/style_random, -/obj/structure/window/spawner/directional/west, -/obj/structure/window/spawner/directional/north, -/obj/structure/window/spawner/directional/south, -/turf/open/floor/grass, -/area/station/hallway/secondary/exit/departure_lounge) "aFs" = ( /obj/structure/filingcabinet/chestdrawer, /turf/open/floor/iron/large, @@ -2554,13 +2593,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/wood, /area/station/command/heads_quarters/qm) -"aGE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/floor2/port/aft) "aGG" = ( /obj/structure/table/reinforced, /obj/item/paper_bin, @@ -2623,33 +2655,16 @@ /obj/item/radio/intercom/directional/west, /turf/open/floor/iron, /area/station/cargo/storage) -"aHf" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/solars/port/aft) "aHk" = ( /turf/closed/wall, /area/station/medical/medbay/lobby) -"aHl" = ( -/obj/machinery/light/directional/south, -/obj/item/trash/champagne_cork{ - pixel_x = 8; - pixel_y = 5 - }, -/obj/item/trash/energybar, -/obj/item/stack/cannonball/trashball{ - pixel_x = -7; - pixel_y = 4 - }, -/obj/item/trash/cheesie, -/obj/effect/decal/cleanable/garbage, -/obj/effect/decal/cleanable/food/plant_smudge, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor1/port/aft) +"aHm" = ( +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/window/spawner/directional/south, +/obj/structure/window/spawner/directional/east, +/obj/structure/window/spawner/directional/north, +/turf/open/floor/grass, +/area/station/hallway/secondary/exit/departure_lounge) "aHn" = ( /obj/effect/turf_decal/stripes/white/line{ dir = 1 @@ -2662,10 +2677,6 @@ /obj/effect/turf_decal/tile/purple/fourcorners, /turf/open/floor/iron, /area/station/science/auxlab) -"aHt" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor1/port/aft) "aHA" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -2751,6 +2762,16 @@ /obj/structure/sign/departments/medbay/alt/directional/north, /turf/open/floor/iron/white/textured, /area/station/medical/treatment_center) +"aIR" = ( +/obj/effect/turf_decal/tile/green/half{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured_half{ + dir = 1 + }, +/area/station/hallway/secondary/exit/escape_pod) "aIV" = ( /obj/structure/grille, /turf/open/floor/plating, @@ -2770,11 +2791,6 @@ }, /turf/open/floor/iron/dark/side, /area/station/hallway/floor3/fore) -"aJk" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor1/port/fore) "aJm" = ( /obj/machinery/light/directional/west, /obj/structure/disposalpipe/segment, @@ -2782,11 +2798,6 @@ dir = 8 }, /area/station/security/office) -"aJE" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/textured_large, -/area/station/cargo/storage) "aJO" = ( /obj/structure/window/reinforced/plasma/spawner/directional/east, /obj/structure/table/reinforced/plasmarglass, @@ -2875,6 +2886,11 @@ dir = 8 }, /area/station/hallway/floor2/fore) +"aKO" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/security/prison) "aKQ" = ( /turf/open/floor/iron/textured_half, /area/station/cargo/sorting) @@ -3020,11 +3036,6 @@ }, /turf/open/floor/iron/large, /area/station/command/gateway) -"aMx" = ( -/obj/item/melee/skateboard/improvised, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor1/starboard/fore) "aMA" = ( /obj/effect/decal/cleanable/ash, /turf/open/floor/engine, @@ -3111,6 +3122,14 @@ /obj/item/paper_bin, /turf/open/floor/iron/white, /area/station/science/lab) +"aOn" = ( +/obj/machinery/atmospherics/components/unary/portables_connector{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/floor2/port) "aOo" = ( /obj/machinery/computer/rdconsole{ dir = 8 @@ -3144,13 +3163,6 @@ }, /turf/open/floor/iron/dark/textured, /area/station/commons/fitness) -"aOB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/contraband/landmine, -/turf/open/floor/engine{ - icon_state = "podfloor_light" - }, -/area/station/maintenance/floor4/port) "aOD" = ( /obj/effect/turf_decal/stripes{ dir = 5 @@ -3257,6 +3269,11 @@ /obj/structure/flora/bush/sparsegrass/style_random, /turf/open/floor/grass, /area/station/service/hydroponics) +"aPK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/cargo/warehouse) "aPM" = ( /obj/effect/turf_decal/tile/green/half{ dir = 8 @@ -3292,6 +3309,11 @@ "aQK" = ( /turf/closed/wall, /area/station/cargo/drone_bay) +"aQO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/port/fore) "aQR" = ( /obj/effect/turf_decal/trimline/yellow/line, /obj/structure/railing, @@ -3442,6 +3464,11 @@ planetary_atmos = 0 }, /area/station/maintenance/floor1/port/aft) +"aSp" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/cargo/warehouse) "aSq" = ( /obj/machinery/rnd/production/protolathe/department/science, /obj/effect/turf_decal/bot, @@ -3472,14 +3499,6 @@ /obj/effect/spawner/random/structure/crate, /turf/open/floor/pod/light, /area/station/maintenance/floor3/starboard/aft) -"aSL" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/siding/thinplating_new{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/cargo/warehouse) "aSQ" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -3538,31 +3557,6 @@ /obj/effect/landmark/start/roboticist, /turf/open/floor/iron, /area/station/science/robotics/lab) -"aTi" = ( -/obj/structure/rack, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/decoration/carpet, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard) -"aTj" = ( -/obj/machinery/door/airlock/hatch{ - name = "Maintenance Access" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/structure/barricade/wooden{ - name = "wooden barricade (KEEP OUT)" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/footprints{ - dir = 8 - }, -/turf/open/floor/wood, -/area/station/service/abandoned_gambling_den) "aTn" = ( /obj/machinery/modular_computer/preset/civilian{ dir = 8 @@ -3583,6 +3577,14 @@ }, /turf/open/floor/iron/dark, /area/station/science/lab) +"aTG" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/spawner/random/engineering/tool, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor2/port/aft) "aTK" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/tile/red/fourcorners, @@ -3594,14 +3596,14 @@ }, /turf/open/floor/plating/airless, /area/space) -"aUe" = ( -/obj/effect/decal/cleanable/dirt, +"aUb" = ( +/obj/structure/railing, /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/green/warning{ - dir = 1 - }, -/turf/open/floor/pod/dark, -/area/station/maintenance/floor2/starboard/aft) +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard/fore) "aUh" = ( /turf/open/floor/grass, /area/station/science/genetics) @@ -3764,14 +3766,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/wood/large, /area/station/security/prison/safe) -"aWj" = ( -/obj/structure/table/wood, -/obj/machinery/chem_dispenser/drinks/beer{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/station/service/abandoned_gambling_den) "aWq" = ( /obj/structure/table/optable, /obj/effect/turf_decal/trimline/blue/filled/line, @@ -3847,16 +3841,6 @@ /obj/machinery/door/firedoor, /turf/open/floor/iron/white/side, /area/station/medical/medbay/lobby) -"aWV" = ( -/obj/structure/rack, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/food_or_drink/condiment, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard) -"aWZ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/port/aft) "aXj" = ( /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 4 @@ -3891,21 +3875,6 @@ /obj/structure/closet/secure_closet/personal, /turf/open/floor/iron/white/small, /area/station/commons/fitness/recreation) -"aXO" = ( -/obj/item/trash/ready_donk, -/obj/item/trash/candle, -/obj/item/trash/can/food/envirochow{ - pixel_x = -7 - }, -/obj/item/trash/boritos/red{ - pixel_x = 4; - pixel_y = 8 - }, -/obj/effect/decal/cleanable/garbage, -/obj/effect/decal/cleanable/food/pie_smudge, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor1/port/aft) "aXR" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -3933,6 +3902,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/textured_large, /area/station/hallway/secondary/exit/departure_lounge) +"aYc" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/station/maintenance/floor2/starboard) "aYd" = ( /obj/effect/turf_decal/trimline/yellow/line{ dir = 1 @@ -3943,6 +3919,12 @@ /obj/machinery/door/firedoor/border_only, /turf/open/floor/iron/dark, /area/station/hallway/floor1/fore) +"aYi" = ( +/obj/effect/turf_decal/tile/green/full, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/firecloset/full, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/secondary/exit/escape_pod) "aYl" = ( /obj/effect/turf_decal/siding/wood/corner{ dir = 4 @@ -4037,13 +4019,6 @@ }, /turf/open/floor/iron/smooth, /area/station/construction) -"aZd" = ( -/obj/machinery/reagentgrinder, -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/glass, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard) "aZj" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -4098,6 +4073,15 @@ }, /turf/open/floor/bamboo/tatami/black, /area/station/commons/storage/art) +"aZH" = ( +/obj/effect/turf_decal/trimline/blue/line{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server/upper) "aZN" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -4139,6 +4123,12 @@ /obj/item/storage/medkit/regular, /turf/open/floor/iron, /area/station/commons/fitness/recreation) +"baj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/freezer, +/obj/effect/spawner/random/medical/memeorgans, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/port/fore) "bam" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -4186,16 +4176,6 @@ /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/station/commons/storage/primary) -"bbs" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet, -/area/station/service/abandoned_gambling_den) "bbv" = ( /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible/layer2{ dir = 4 @@ -4318,6 +4298,11 @@ /obj/structure/cable, /turf/open/floor/wood, /area/station/command/meeting_room) +"bcH" = ( +/obj/effect/turf_decal/tile/blue/half, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/white/textured_edge, +/area/station/medical/abandoned) "bcK" = ( /obj/structure/railing{ dir = 4 @@ -4369,12 +4354,6 @@ }, /turf/open/floor/iron, /area/station/construction/mining/aux_base) -"beb" = ( -/obj/structure/flora/bush/sparsegrass/style_random, -/obj/structure/window/spawner/directional/south, -/obj/structure/window/spawner/directional/north, -/turf/open/floor/grass, -/area/station/hallway/secondary/exit/departure_lounge) "beh" = ( /turf/open/floor/iron, /area/station/commons/toilet) @@ -4446,6 +4425,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/pod/light, /area/station/maintenance/floor1/starboard/fore) +"beM" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/medical/abandoned) "bfe" = ( /obj/structure/reagent_dispensers/watertank, /obj/effect/turf_decal/bot, @@ -4473,13 +4460,6 @@ "bfj" = ( /turf/open/openspace, /area/station/service/library) -"bfk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/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/maintenance/floor2/starboard/aft) "bfl" = ( /obj/effect/turf_decal/bot, /obj/structure/reagent_dispensers/fueltank, @@ -4519,6 +4499,14 @@ /obj/structure/window/reinforced/spawner/directional/south, /turf/open/floor/iron/dark/smooth_large, /area/station/science/robotics/mechbay) +"bfC" = ( +/obj/effect/spawner/random/structure/crate, +/obj/effect/turf_decal/arrows/white{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/maintenance/floor2/port/aft) "bfD" = ( /obj/machinery/recharger, /obj/structure/table, @@ -4625,14 +4613,6 @@ /obj/item/statuebust, /turf/open/misc/beach/sand, /area/station/hallway/floor2/fore) -"bhp" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/corner, -/area/station/engineering/lobby) "bhz" = ( /obj/effect/turf_decal/trimline/brown/warning{ dir = 4 @@ -4640,14 +4620,6 @@ /obj/structure/marker_beacon/burgundy, /turf/open/floor/engine/hull, /area/space/nearstation) -"bhF" = ( -/obj/machinery/chem_master, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/white, -/area/station/medical/abandoned) "bhN" = ( /obj/structure/cable, /obj/machinery/navbeacon{ @@ -4656,6 +4628,12 @@ }, /turf/open/floor/iron, /area/station/hallway/floor3/fore) +"bhT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/contraband/permabrig_weapon, +/obj/machinery/light/small/blacklight/directional/east, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard) "bhW" = ( /obj/machinery/conveyor{ dir = 4; @@ -4704,6 +4682,16 @@ }, /turf/open/floor/plating, /area/station/construction) +"bim" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/mech_bay_recharge_port{ + dir = 2 + }, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/cargo/warehouse) "bin" = ( /obj/effect/turf_decal/trimline/green/warning{ dir = 1 @@ -4835,13 +4823,6 @@ /obj/effect/overlay/coconut, /turf/open/misc/beach/sand, /area/station/hallway/floor2/fore) -"bjg" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/engine, -/area/station/maintenance/floor4/starboard/aft) "bjh" = ( /obj/machinery/light/directional/north, /obj/structure/table/reinforced, @@ -4895,14 +4876,6 @@ /obj/structure/chair/sofa/middle/brown, /turf/open/floor/carpet/green, /area/station/service/bar/atrium) -"bjT" = ( -/obj/machinery/computer{ - desc = "Barely powered, it's not working well."; - name = "Flickering Nav Console" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/mineral/plastitanium/red, -/area/station/maintenance/floor4/starboard/aft) "bjZ" = ( /obj/structure/chair/comfy/carp{ dir = 8 @@ -4945,28 +4918,25 @@ dir = 10 }, /area/station/science/robotics/lab) -"bkx" = ( -/obj/machinery/door/poddoor/shutters{ - id = "warehouseqm" - }, -/obj/machinery/button/door/directional/north{ - id = "warehouseqm" - }, +"bky" = ( +/obj/effect/turf_decal/bot, /obj/effect/decal/cleanable/dirt, -/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/machinery/door/firedoor, -/turf/open/floor/iron, -/area/station/cargo/warehouse) +/turf/open/floor/iron/textured_large, +/area/station/cargo/storage) "bkz" = ( /obj/structure/flora/bush/sparsegrass/style_random, /obj/structure/window/spawner/directional/east, /obj/structure/window/spawner/directional/west, /turf/open/floor/grass, /area/station/hallway/secondary/exit/departure_lounge) +"bkI" = ( +/obj/effect/turf_decal/trimline/blue/line{ + dir = 8 + }, +/obj/machinery/light/small/blacklight/directional/east, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server/upper) "bkM" = ( /obj/effect/landmark/start/ai/secondary, /obj/item/radio/intercom/directional/north{ @@ -5017,23 +4987,16 @@ }, /turf/open/floor/iron/white, /area/station/science/ordnance/storage) -"bkY" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/wardrobe/grey, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/port/fore) "blj" = ( /obj/machinery/portable_atmospherics/canister/nitrogen, /obj/effect/turf_decal/bot, /turf/open/floor/iron/dark/textured, /area/station/science/ordnance/storage) +"blk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/station/service/abandoned_gambling_den) "bln" = ( /obj/docking_port/stationary/random{ dir = 2; @@ -5043,6 +5006,11 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating/airless, /area/space/nearstation) +"blr" = ( +/obj/effect/decal/cleanable/glass, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine, +/area/station/maintenance/floor1/port/aft) "blt" = ( /obj/effect/turf_decal/stripes/line, /obj/machinery/light/small/directional/west, @@ -5068,13 +5036,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/wood/tile, /area/station/service/library) -"blI" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible/layer2{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmos) "blJ" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron, @@ -5128,6 +5089,18 @@ /obj/structure/railing, /turf/open/floor/iron/white/side, /area/station/science/robotics/lab) +"bmb" = ( +/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) "bml" = ( /obj/structure/lattice/catwalk, /obj/structure/ladder, @@ -5192,6 +5165,14 @@ /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, @@ -5216,6 +5197,10 @@ /obj/item/clothing/glasses/hud/health, /turf/open/floor/iron/white/textured, /area/station/medical/treatment_center) +"bnH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/engineering/atmos) "bnI" = ( /obj/structure/table/reinforced, /obj/machinery/cell_charger, @@ -5383,14 +5368,6 @@ /obj/structure/table/reinforced/rglass, /turf/open/floor/iron/large, /area/station/science/robotics/lab) -"bpN" = ( -/obj/structure/flora/bush/sparsegrass/style_random, -/obj/structure/flora/bush/lavendergrass/style_random, -/obj/structure/window/spawner/directional/south, -/obj/structure/window/spawner/directional/east, -/obj/structure/window/spawner/directional/west, -/turf/open/floor/grass, -/area/station/hallway/secondary/exit/departure_lounge) "bpU" = ( /obj/effect/turf_decal/trimline/brown/arrow_ccw{ dir = 10 @@ -5555,6 +5532,16 @@ /obj/structure/disposalpipe/trunk, /turf/open/floor/iron/dark, /area/station/science/breakroom) +"brr" = ( +/obj/structure/table/reinforced, +/obj/item/plate{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/knife/butcher, +/obj/structure/sign/poster/official/cleanliness/directional/north, +/turf/open/floor/pod/light, +/area/station/maintenance/floor1/port) "brs" = ( /obj/machinery/door/airlock/science/glass{ name = "Laboratory A" @@ -5609,6 +5596,11 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/station/service/hydroponics) +"brR" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/maintenance/floor2/port/aft) "brT" = ( /obj/structure/railing{ dir = 8 @@ -5625,11 +5617,6 @@ name = "lab floor" }, /area/station/science/genetics) -"bsl" = ( -/obj/item/stack/tile/iron/white, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/medical/abandoned) "bsu" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -5666,11 +5653,6 @@ dir = 1 }, /area/station/hallway/floor1/aft) -"bsG" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/floor1/port) "bsI" = ( /obj/machinery/door/window/right/directional/north{ name = "Infirmary" @@ -5808,6 +5790,17 @@ name = "lab floor" }, /area/station/science/genetics) +"btJ" = ( +/obj/machinery/door/firedoor, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/hallway/secondary/exit/escape_pod) "btL" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/stripes/corner{ @@ -5883,23 +5876,21 @@ name = "lab floor" }, /area/station/science/robotics/lab) -"buB" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/pod/dark, -/area/station/maintenance/floor1/port/aft) -"buC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light_switch/directional/west, -/obj/structure/chair/wood{ +"bux" = ( +/obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/tracks{ dir = 1 }, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/wood/large, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/engine, /area/station/maintenance/floor4/starboard/aft) +"buB" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/pod/dark, +/area/station/maintenance/floor1/port/aft) "buI" = ( /obj/machinery/door/window/brigdoor/right/directional/south{ name = "Security Desk"; @@ -5919,6 +5910,20 @@ /obj/effect/turf_decal/trimline/brown, /turf/open/floor/engine/vacuum, /area/station/engineering/atmos) +"buO" = ( +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal/delivery_chute{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/filled/arrow_cw, +/obj/structure/window/reinforced/tinted/spawner/directional/south, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/turf_decal/trimline/green/filled/mid_joiner, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/library/printer) "buP" = ( /obj/effect/spawner/random/vending/snackvend, /turf/open/floor/iron/dark, @@ -5929,6 +5934,16 @@ }, /turf/open/floor/iron/dark, /area/station/engineering/atmos/pumproom) +"buX" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/station/service/abandoned_gambling_den) "bva" = ( /obj/structure/ladder, /obj/effect/turf_decal/trimline/purple/warning, @@ -5979,16 +5994,6 @@ }, /turf/open/openspace, /area/station/hallway/floor3/fore) -"bvC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 5 - }, -/obj/structure/disposalpipe/trunk/multiz{ - dir = 8 - }, -/turf/open/floor/pod/light, -/area/station/maintenance/floor2/port/aft) "bvF" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -6046,6 +6051,12 @@ /obj/effect/spawner/random/structure/grille, /turf/open/floor/pod/light, /area/station/maintenance/floor1/port/fore) +"bvZ" = ( +/obj/machinery/space_heater/improvised_chem_heater, +/obj/effect/turf_decal/tile/blue/half, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/white/smooth_edge, +/area/station/medical/abandoned) "bwl" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, @@ -6083,11 +6094,6 @@ /obj/machinery/camera/autoname/directional/east, /turf/open/floor/carpet/red, /area/station/service/library) -"bwA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/east, -/turf/open/floor/pod/dark, -/area/station/maintenance/floor4/starboard) "bwF" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -6193,11 +6199,14 @@ /obj/item/radio/intercom/directional/east, /turf/open/floor/iron/smooth, /area/station/construction) -"bxH" = ( -/obj/structure/flora/rock/pile, +"bxL" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners{ + dir = 1 + }, +/obj/machinery/light/directional/south, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/fakebasalt, -/area/station/maintenance/floor3/port) +/turf/open/floor/iron/checker, +/area/station/cargo/miningdock) "bxQ" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment{ @@ -6475,6 +6484,14 @@ }, /turf/open/floor/iron/checker, /area/station/commons/vacant_room/commissary) +"bAz" = ( +/obj/effect/spawner/random/trash/garbage{ + spawn_loot_count = 3; + spawn_scatter_radius = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor3/starboard/aft) "bAG" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -6501,6 +6518,12 @@ /obj/item/radio/intercom/directional/east, /turf/open/floor/iron/dark/side, /area/station/hallway/secondary/entry) +"bAS" = ( +/obj/machinery/vending/cola/pwr_game, +/obj/effect/turf_decal/siding/wood, +/obj/structure/sign/poster/contraband/pwr_game/directional/north, +/turf/open/floor/iron/white, +/area/station/medical/break_room) "bBb" = ( /obj/machinery/duct, /turf/open/floor/catwalk_floor/iron_white, @@ -6600,6 +6623,13 @@ name = "treated water" }, /area/station/maintenance/floor1/port/aft) +"bCN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/gibs/core, +/obj/effect/decal/cleanable/blood, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/pod/dark, +/area/station/maintenance/floor4/starboard) "bDc" = ( /obj/machinery/vending/hydronutrients, /obj/effect/decal/cleanable/dirt, @@ -6745,6 +6775,16 @@ /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, @@ -6773,11 +6813,6 @@ /obj/machinery/airalarm/directional/east, /turf/open/floor/pod/light, /area/station/maintenance/floor3/port) -"bGh" = ( -/obj/effect/spawner/random/engineering/atmospherics_portable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/dark, -/area/station/maintenance/floor3/port/aft) "bGl" = ( /obj/structure/table/reinforced/plastitaniumglass, /obj/machinery/light/dim/directional/north, @@ -6810,11 +6845,6 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/radshelter/sci) -"bGy" = ( -/obj/machinery/light/dim/directional/north, -/obj/structure/window/reinforced/tinted/frosted/spawner/directional/west, -/turf/open/openspace, -/area/station/maintenance/floor4/port/aft) "bGM" = ( /obj/machinery/door/firedoor/border_only{ dir = 8 @@ -6880,11 +6910,6 @@ /obj/effect/spawner/structure/window/reinforced/tinted, /turf/open/floor/plating, /area/station/service/chapel/funeral) -"bIm" = ( -/obj/structure/chair, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/solars/port/aft) "bIs" = ( /obj/machinery/light/directional/south, /obj/machinery/light_switch/directional/south, @@ -6977,18 +7002,6 @@ dir = 4 }, /area/station/hallway/secondary/exit/departure_lounge) -"bJs" = ( -/obj/effect/spawner/random/structure/crate, -/obj/effect/decal/cleanable/dirt, -/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 @@ -7012,15 +7025,15 @@ /obj/structure/ladder, /turf/open/floor/plating/foam, /area/station/maintenance/floor1/port/aft) -"bKa" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmos) "bKb" = ( /obj/item/storage/box/bodybags, /obj/structure/table/reinforced/rglass, /turf/open/floor/iron/dark/textured, /area/station/medical/morgue) +"bKm" = ( +/obj/structure/window/reinforced/tinted/frosted/spawner/directional/west, +/turf/open/openspace, +/area/station/maintenance/floor2/port) "bKp" = ( /obj/structure/window/reinforced/spawner/directional/south, /obj/effect/turf_decal/siding/thinplating_new/dark, @@ -7064,11 +7077,6 @@ }, /turf/open/floor/iron, /area/station/engineering/gravity_generator) -"bKR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/pod/light, -/area/station/maintenance/floor3/port/aft) "bKS" = ( /obj/structure/table/reinforced, /obj/effect/spawner/random/entertainment/lighter, @@ -7090,6 +7098,11 @@ /obj/item/flashlight/lamp/green, /turf/open/floor/carpet, /area/station/command/heads_quarters/captain) +"bLc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/structure/tank_holder, +/turf/open/floor/pod/light, +/area/station/maintenance/floor2/port/aft) "bLd" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -7097,10 +7110,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark/smooth_large, /area/station/service/kitchen/abandoned) -"bLt" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/cargo/miningdock) "bLy" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 @@ -7115,6 +7124,22 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/station/hallway/floor3/fore) +"bLH" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/trimline/blue, +/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/cyborg, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/turret_protected/aisat) +"bLO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/portable_atmospherics/pump, +/obj/machinery/portable_atmospherics/pump, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/port/fore) "bLS" = ( /obj/effect/turf_decal/delivery, /obj/structure/table/reinforced, @@ -7235,6 +7260,10 @@ }, /turf/open/floor/iron/dark, /area/station/hallway/floor1/fore) +"bMq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod, +/area/station/maintenance/floor4/port/fore) "bMs" = ( /obj/structure/chair/wood, /obj/effect/turf_decal/siding/wood{ @@ -7284,18 +7313,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/maintenance/floor2/starboard/aft) -"bMW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/structure/electrified_grille, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/port) -"bNb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard/fore) "bNc" = ( /obj/structure/sign/poster/official/random/directional/north, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -7462,6 +7479,15 @@ /obj/structure/sink/directional/south, /turf/open/floor/iron/white, /area/station/science/lower) +"bPs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/reinforced/rglass, +/obj/item/reagent_containers/pill/iron{ + desc = "What could it be?"; + name = "blue pill" + }, +/turf/open/floor/carpet/blue, +/area/station/maintenance/floor3/port/aft) "bPv" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -7480,6 +7506,17 @@ }, /turf/open/floor/grass, /area/station/service/hydroponics/garden/abandoned) +"bPF" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/firealarm/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/dark, +/area/station/maintenance/floor2/starboard) "bPO" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 @@ -7607,14 +7644,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/station/hallway/floor4/fore) -"bRt" = ( -/obj/structure/marker_beacon/burgundy, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard/aft) "bRH" = ( /obj/effect/turf_decal/tile/purple/opposingcorners, /obj/structure/sign/poster/official/random/directional/south, @@ -7687,6 +7716,14 @@ dir = 8 }, /area/station/hallway/floor1/aft) +"bSD" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/corner, +/area/station/engineering/lobby) "bSH" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -7820,13 +7857,6 @@ /obj/structure/flora/bush/flowers_pp/style_random, /turf/open/floor/grass, /area/station/service/library/garden) -"bUC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/smooth_half, -/area/station/cargo/warehouse) "bUH" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -7926,20 +7956,17 @@ dir = 1 }, /area/station/hallway/floor4/aft) +"bVE" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard/fore) "bVG" = ( /obj/machinery/atmospherics/pipe/smart/simple/yellow/visible/layer2{ dir = 4 }, /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, @@ -7948,6 +7975,14 @@ }, /turf/open/floor/iron, /area/station/security/prison) +"bVN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/emcloset/anchored, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/port) "bVP" = ( /obj/effect/turf_decal/trimline/blue/filled/corner{ dir = 8 @@ -7993,19 +8028,15 @@ /obj/machinery/status_display/ai/directional/north, /turf/open/floor/iron/dark, /area/station/hallway/floor4/aft) -"bWn" = ( -/obj/effect/turf_decal/tile/green/half/contrasted{ - dir = 4 - }, -/obj/machinery/space_heater, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard) "bWz" = ( /obj/effect/turf_decal/tile/blue/opposingcorners, /obj/machinery/vending/cigarette, /turf/open/floor/iron/white, /area/station/hallway/floor2/aft) +"bWQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/security/range) "bXe" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/disposalpipe/segment{ @@ -8043,13 +8074,6 @@ /obj/effect/mapping_helpers/airlock/access/all/engineering/general, /turf/open/floor/engine, /area/station/engineering/supermatter) -"bXC" = ( -/obj/effect/turf_decal/trimline/purple/warning{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor2/starboard) "bXD" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/layer4{ dir = 8 @@ -8227,14 +8251,10 @@ dir = 4 }, /area/station/hallway/floor2/aft) -"caQ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/medical/abandoned) +"caS" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/grass, +/area/station/science/xenobiology) "cbm" = ( /obj/effect/turf_decal/stripes/corner{ dir = 1 @@ -8251,12 +8271,6 @@ dir = 1 }, /area/station/hallway/secondary/service) -"cbt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/grille, -/turf/open/floor/plating, -/area/station/maintenance/floor3/starboard) "cbu" = ( /obj/effect/turf_decal/tile/yellow{ dir = 1 @@ -8276,11 +8290,6 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/ai_monitored/security/armory) -"cbE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/cable_coil/cut, -/turf/open/floor/plating, -/area/station/medical/abandoned) "cbG" = ( /obj/structure/railing{ dir = 8 @@ -8338,11 +8347,16 @@ }, /turf/open/floor/wood, /area/station/service/bar/atrium) -"ccs" = ( -/obj/structure/window/reinforced/tinted/frosted/spawner/directional/east, -/obj/structure/window/reinforced/tinted/frosted/spawner/directional/north, -/turf/open/openspace, -/area/station/maintenance/floor3/port) +"ccv" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "aband_armour"; + name = "Armoury Shutters" + }, +/obj/effect/decal/cleanable/dirt, +/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/maintenance/floor2/starboard/aft) "ccw" = ( /obj/structure/table/reinforced, /obj/item/clothing/head/rasta, @@ -8436,6 +8450,16 @@ /obj/machinery/disposal/bin, /turf/open/floor/iron/dark, /area/station/hallway/floor1/fore) +"cdu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/box, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/port/fore) +"cdy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/dim/directional/west, +/turf/open/floor/pod/light, +/area/station/maintenance/floor2/port/aft) "cdF" = ( /turf/open/floor/iron/dark/side{ dir = 1 @@ -8465,6 +8489,15 @@ }, /turf/open/floor/iron, /area/station/hallway/floor2/fore) +"cdP" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/light/cold/no_nightlight/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/floor2/starboard) "cdS" = ( /obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ dir = 1 @@ -8546,6 +8579,16 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/security/checkpoint/second) +"cfb" = ( +/obj/structure/sign/warning{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/maintenance/floor1/port/aft) "cfe" = ( /obj/machinery/airalarm/directional/south, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -8680,6 +8723,11 @@ /obj/effect/turf_decal/trimline/dark_blue/line, /turf/open/floor/iron/dark, /area/station/commons/storage/tools) +"cgs" = ( +/obj/structure/table/reinforced, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/floor2/starboard/aft) "cgt" = ( /obj/machinery/camera/autoname/directional/east, /obj/structure/disposalpipe/segment{ @@ -8696,21 +8744,6 @@ dir = 10 }, /area/station/security/office) -"cgw" = ( -/obj/effect/decal/cleanable/oil, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod, -/area/station/maintenance/floor4/starboard/aft) -"cgx" = ( -/obj/structure/sign/warning{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/maintenance/floor1/port/aft) "cgz" = ( /obj/machinery/firealarm/directional/south, /obj/structure/disposalpipe/segment{ @@ -8744,6 +8777,13 @@ /obj/effect/turf_decal/tile/red/fourcorners, /turf/open/floor/iron/dark, /area/station/security/warden) +"chf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/pod/light, +/area/station/maintenance/floor3/port/fore) "chk" = ( /obj/machinery/door/airlock/hatch{ name = "Maintenance Bulkhead" @@ -8771,15 +8811,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/commons/storage/primary) -"chA" = ( -/obj/effect/turf_decal/trimline/blue/corner, -/obj/item/wrench, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server/upper) "chF" = ( /obj/machinery/holopad, /obj/effect/turf_decal/tile/red/opposingcorners{ @@ -8796,6 +8827,11 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/security/prison) +"cie" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/grille, +/turf/open/floor/plating, +/area/station/maintenance/floor2/port) "cil" = ( /obj/machinery/door/airlock/medical{ name = "Recovery Room" @@ -8858,6 +8894,14 @@ /obj/machinery/duct, /turf/open/floor/iron/white, /area/station/medical/surgery/fore) +"ciD" = ( +/obj/effect/turf_decal/trimline/red/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/duct, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard/aft) "ciH" = ( /obj/structure/table, /obj/item/stack/sheet/plasteel{ @@ -8924,6 +8968,16 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/station/security/prison/safe) +"ciU" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/structure/closet_maintenance, +/turf/open/floor/iron, +/area/station/maintenance/floor3/starboard/aft) "ciV" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 @@ -8953,14 +9007,6 @@ }, /turf/open/floor/plating, /area/station/engineering/engine_smes) -"cjm" = ( -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/structure/sign/poster/official/moth_meth/directional/south, -/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/medical/pharmacy) "cjo" = ( /obj/effect/turf_decal/trimline/red/filled/corner{ dir = 8 @@ -8977,12 +9023,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/smooth, /area/station/construction) -"cjB" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/shreds, -/turf/open/floor/engine, -/area/station/maintenance/floor4/starboard/aft) "cjC" = ( /obj/structure/closet/emcloset/anchored, /turf/open/floor/plating, @@ -9057,16 +9097,6 @@ /obj/item/kirbyplants/random, /turf/open/floor/wood/parquet, /area/station/medical/psychology) -"ckU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/tracks{ - dir = 5 - }, -/turf/open/floor/engine, -/area/station/maintenance/floor4/starboard/aft) "ckX" = ( /obj/machinery/atmospherics/pipe/layer_manifold/supply/visible{ dir = 4 @@ -9152,14 +9182,6 @@ /obj/machinery/chem_master, /turf/open/floor/iron/textured_large, /area/station/medical/chemistry) -"clT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/broken/directional/south, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/pod, -/area/station/maintenance/floor4/starboard/aft) "clV" = ( /obj/structure/closet{ name = "Evidence Closet 4" @@ -9238,6 +9260,13 @@ dir = 10 }, /area/station/hallway/floor3/aft) +"cmI" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer2{ + dir = 6 + }, +/obj/structure/window/reinforced/plasma/spawner/directional/south, +/turf/open/floor/engine/airless, +/area/station/science/ordnance/freezerchamber) "cmM" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -9254,6 +9283,10 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/textured, /area/station/command/heads_quarters/qm) +"cnf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/maintenance/floor2/starboard/aft) "cng" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron/dark/textured, @@ -9306,16 +9339,16 @@ /obj/effect/spawner/structure/window/hollow/reinforced/directional, /turf/open/floor/plating, /area/station/maintenance/floor1/starboard) -"cnL" = ( -/obj/effect/turf_decal/trimline/purple/warning{ - dir = 8 +"cnJ" = ( +/obj/machinery/power/terminal{ + dir = 4 }, +/obj/structure/cable, /obj/effect/turf_decal/stripes{ - dir = 8 + dir = 4 }, -/obj/structure/closet/firecloset, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/dark, +/turf/open/floor/plating, /area/station/maintenance/floor2/starboard) "cnW" = ( /turf/open/floor/pod/light, @@ -9515,6 +9548,13 @@ }, /turf/open/floor/engine/hull, /area/space/nearstation) +"crh" = ( +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/maintenance/floor2/port/aft) "crj" = ( /obj/structure/window/reinforced/tinted/fulltile, /turf/open/floor/plating, @@ -9568,6 +9608,16 @@ }, /turf/open/floor/engine/airless, /area/station/maintenance/disposal/incinerator) +"crX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/remains/human{ + name = "dehydrated skeleton" + }, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/sign/poster/contraband/random/directional/north, +/obj/item/weaponcrafting/receiver, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/port) "cse" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -9622,12 +9672,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/wood/large, /area/station/service/library/lounge) -"csF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/floor4/starboard/aft) "csM" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -9652,6 +9696,14 @@ }, /turf/open/floor/wood, /area/station/service/bar) +"csQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/freezer, +/obj/item/stack/medical/suture, +/obj/item/stack/medical/gauze/twelve, +/obj/item/stack/medical/bone_gel, +/turf/open/floor/iron/white, +/area/station/maintenance/floor3/starboard/aft) "csT" = ( /obj/effect/turf_decal/stripes/corner{ dir = 1 @@ -9685,6 +9737,12 @@ /obj/effect/spawner/random/engineering/tank, /turf/open/floor/pod/dark, /area/station/maintenance/floor2/starboard/fore) +"ctC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/solars/port/aft) "ctI" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -9741,6 +9799,17 @@ /obj/machinery/light/directional/east, /turf/open/floor/grass, /area/station/hallway/secondary/entry) +"cuq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/poddoor/shutters{ + id = "warehouseqm" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron, +/area/station/cargo/warehouse) "cus" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/pod/light, @@ -9881,16 +9950,24 @@ }, /turf/open/floor/iron/dark/textured, /area/station/medical/virology/isolation) -"cwl" = ( +"cwe" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/fakebasalt, -/area/station/maintenance/floor3/port) +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/medical/chemistry) "cwq" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, /turf/open/floor/catwalk_floor, /area/station/maintenance/floor2/starboard/fore) +"cwB" = ( +/obj/effect/turf_decal/trimline/green/warning, +/obj/effect/spawner/random/structure/tank_holder, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/dark, +/area/station/maintenance/floor2/starboard) "cwD" = ( /obj/machinery/newscaster/directional/south, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -9916,6 +9993,12 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/security/holding_cell) +"cxi" = ( +/obj/item/food/deadmouse/moldy, +/obj/effect/turf_decal/tile/red/half, +/obj/structure/window/reinforced/tinted/frosted/spawner/directional/south, +/turf/open/floor/stone, +/area/station/maintenance/floor1/port) "cxl" = ( /obj/effect/turf_decal/stripes/line{ dir = 6 @@ -10008,6 +10091,24 @@ /obj/structure/cable, /turf/open/floor/wood, /area/station/commons/dorms/apartment1) +"cyd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/medical/chemistry) +"cym" = ( +/obj/effect/turf_decal/trimline/purple/arrow_ccw, +/obj/effect/turf_decal/trimline/green/arrow_cw{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/obj/item/radio/intercom/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/cargo/miningdock) "cyx" = ( /obj/structure/sign/poster/official/random/directional/north, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -10083,15 +10184,6 @@ /obj/effect/spawner/random/maintenance, /turf/open/floor/pod/light, /area/station/maintenance/floor1/port) -"cAU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/sign/poster/official/safety_internals/directional/south, -/turf/open/floor/pod/light, -/area/station/maintenance/floor1/port/fore) "cBa" = ( /turf/open/floor/iron/white, /area/station/command/heads_quarters/cmo) @@ -10279,6 +10371,11 @@ /obj/effect/landmark/start/atmospheric_technician, /turf/open/floor/iron, /area/station/engineering/atmos) +"cDN" = ( +/obj/machinery/light/dim/directional/north, +/obj/structure/window/reinforced/tinted/frosted/spawner/directional/west, +/turf/open/openspace, +/area/station/maintenance/floor4/port/aft) "cEb" = ( /obj/effect/turf_decal/tile/green/half{ dir = 8 @@ -10287,14 +10384,6 @@ dir = 4 }, /area/station/service/hydroponics/garden) -"cEj" = ( -/obj/item/clothing/suit/toggle/owlwings/griffinwings, -/obj/item/clothing/under/costume/griffin, -/obj/item/clothing/shoes/griffin, -/obj/structure/sign/poster/contraband/the_griffin/directional/north, -/obj/structure/closet/cabinet, -/turf/open/floor/wood/parquet, -/area/station/maintenance/floor2/port/aft) "cEl" = ( /obj/machinery/door/window/left/directional/south{ name = "Pen 4"; @@ -10371,28 +10460,9 @@ /obj/machinery/newscaster/directional/east, /turf/open/floor/iron, /area/station/science/genetics) -"cFK" = ( -/obj/structure/table/wood/poker, -/obj/effect/spawner/random/entertainment/dice, -/obj/machinery/airalarm/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet/green, -/area/station/service/abandoned_gambling_den) "cFQ" = ( /turf/closed/wall, /area/station/science/auxlab/firing_range) -"cFY" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/supply/visible/layer4{ - dir = 4 - }, -/obj/effect/landmark/navigate_destination/incinerator, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) "cGh" = ( /obj/effect/spawner/random/structure/grille, /turf/open/floor/pod/light, @@ -10590,11 +10660,6 @@ /obj/machinery/door/firedoor, /turf/open/floor/iron, /area/station/security/checkpoint/escape) -"cIp" = ( -/obj/machinery/light/directional/east, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor1/port/aft) "cIr" = ( /obj/structure/chair/stool/bar/directional/east, /turf/open/floor/wood, @@ -10605,17 +10670,6 @@ dir = 4 }, /area/station/hallway/floor1/fore) -"cIE" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/tracks{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/engine, -/area/station/maintenance/floor4/starboard/aft) "cIJ" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 1 @@ -10672,6 +10726,11 @@ name = "treated water" }, /area/station/maintenance/floor1/port/aft) +"cIX" = ( +/obj/machinery/firealarm/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/dark, +/area/station/maintenance/floor2/starboard) "cJf" = ( /obj/effect/turf_decal/bot, /obj/structure/rack, @@ -10723,6 +10782,13 @@ /obj/machinery/shower/directional/west, /turf/open/floor/noslip, /area/station/commons/toilet) +"cJz" = ( +/obj/effect/decal/cleanable/blood/tracks, +/obj/effect/decal/cleanable/dirt, +/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/maintenance/floor2/starboard/aft) "cJB" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/crate/hydroponics, @@ -10801,17 +10867,6 @@ }, /turf/open/floor/iron/white, /area/station/science/lobby) -"cKH" = ( -/obj/effect/turf_decal/trimline/purple/arrow_ccw, -/obj/machinery/door/firedoor/heavy, -/obj/effect/turf_decal/trimline/purple/mid_joiner, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/trimline/green/arrow_cw{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/textured_large, -/area/station/cargo/miningdock) "cKO" = ( /obj/effect/turf_decal/trimline/red/line{ dir = 1 @@ -10877,14 +10932,6 @@ /obj/effect/decal/remains/human, /turf/open/floor/pod/dark, /area/station/service/kitchen/abandoned) -"cLL" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp, -/obj/effect/turf_decal/siding/wood, -/obj/structure/window/reinforced/tinted/spawner/directional/north, -/obj/structure/window/reinforced/tinted/spawner/directional/west, -/turf/open/floor/carpet, -/area/station/commons/vacant_room/office) "cLQ" = ( /obj/machinery/door/airlock{ name = "Locker Room" @@ -10949,16 +10996,13 @@ /obj/structure/flora/bush/sparsegrass/style_random, /turf/open/floor/grass, /area/station/hallway/floor1/aft) -"cMU" = ( -/obj/effect/turf_decal/tile/green/anticorner{ - dir = 8 - }, +"cMC" = ( +/obj/effect/turf_decal/trimline/green/warning, +/obj/effect/turf_decal/stripes, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/decal/cleanable/dirt, -/obj/machinery/vending/snack/green, -/turf/open/floor/iron/dark/side{ - dir = 10 - }, -/area/station/hallway/secondary/exit/escape_pod) +/turf/open/floor/pod/dark, +/area/station/maintenance/floor2/starboard) "cNb" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4{ dir = 8 @@ -11030,15 +11074,6 @@ /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, @@ -11098,6 +11133,14 @@ /obj/item/radio/intercom/directional/north, /turf/open/floor/iron/dark/textured_large, /area/station/engineering/lobby) +"cPb" = ( +/obj/effect/turf_decal/tile/red/anticorner{ + dir = 4 + }, +/obj/structure/window/reinforced/tinted/frosted/spawner/directional/east, +/obj/structure/window/reinforced/tinted/frosted/spawner/directional/north, +/turf/open/floor/stone, +/area/station/maintenance/floor1/port) "cPg" = ( /obj/effect/turf_decal/tile/blue/fourcorners, /obj/machinery/atmospherics/components/binary/pump/on{ @@ -11158,6 +11201,11 @@ }, /turf/open/floor/catwalk_floor, /area/station/science/cytology) +"cQh" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/security/prison) "cQj" = ( /obj/effect/spawner/random/structure/chair_maintenance{ dir = 8 @@ -11178,6 +11226,12 @@ /obj/machinery/firealarm/directional/south, /turf/open/floor/catwalk_floor, /area/station/maintenance/floor3/port/fore) +"cQx" = ( +/obj/structure/table/glass, +/obj/item/stack/sheet/mineral/plasma/five, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/circuit/telecomms, +/area/station/tcommsat/server/upper) "cQz" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -11195,12 +11249,6 @@ dir = 8 }, /area/station/engineering/lobby) -"cQC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/smes, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/floor4/port/fore) "cQL" = ( /obj/machinery/atmospherics/pipe/smart/simple/purple/visible/layer1{ dir = 9 @@ -11227,15 +11275,6 @@ dir = 1 }, /area/station/engineering/atmos/hfr_room) -"cQY" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/abandoned) "cRd" = ( /obj/machinery/door/airlock/science/glass{ name = "Research and Development" @@ -11329,11 +11368,6 @@ /obj/effect/turf_decal/tile/green/full, /turf/open/floor/iron/dark, /area/station/service/hydroponics) -"cSk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/maintenance/two, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard) "cSq" = ( /obj/item/storage/box/teargas{ pixel_x = 3; @@ -11401,6 +11435,23 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/catwalk_floor/iron, /area/station/hallway/secondary/entry) +"cTl" = ( +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/flora/bush/flowers_yw/style_random, +/obj/structure/window/spawner/directional/south, +/obj/structure/window/spawner/directional/north, +/turf/open/floor/grass, +/area/station/hallway/secondary/exit/departure_lounge) +"cTo" = ( +/obj/effect/spawner/random/structure/grille, +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard) "cTs" = ( /obj/structure/cable/multilayer/multiz, /obj/structure/cable, @@ -11424,14 +11475,6 @@ /obj/structure/cable, /turf/open/floor/engine/hull/reinforced, /area/space/nearstation) -"cTJ" = ( -/obj/effect/turf_decal/trimline/green/warning{ - dir = 10 - }, -/obj/machinery/airalarm/directional/west, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor2/starboard) "cTP" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 @@ -11541,14 +11584,6 @@ name = "lab floor" }, /area/station/science/robotics/lab) -"cVb" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/engine, -/area/station/maintenance/floor4/starboard/aft) "cVl" = ( /obj/machinery/light/no_nightlight/directional/south, /obj/effect/spawner/random/structure/crate_abandoned, @@ -11570,11 +11605,6 @@ /obj/structure/extinguisher_cabinet/directional/east, /turf/open/floor/iron/chapel, /area/station/service/chapel) -"cVt" = ( -/obj/structure/window/reinforced/spawner/directional/south, -/obj/structure/window/reinforced/spawner/directional/east, -/turf/open/floor/grass, -/area/station/science/xenobiology) "cVD" = ( /obj/structure/cable, /turf/open/floor/iron, @@ -11710,12 +11740,6 @@ dir = 4 }, /area/station/hallway/floor2/fore) -"cWR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/solars/port/aft) "cWY" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -11778,6 +11802,21 @@ /obj/item/radio/intercom/directional/east, /turf/open/floor/iron/dark, /area/station/engineering/atmos/hfr_room) +"cXK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/trimline/green/warning{ + dir = 1 + }, +/turf/open/floor/pod/dark, +/area/station/maintenance/floor2/starboard/aft) +"cXN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/broken/directional/east, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/hallway/secondary/exit) "cXO" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 1 @@ -11805,6 +11844,17 @@ /obj/machinery/firealarm/directional/east, /turf/open/floor/pod/dark, /area/station/maintenance/floor2/starboard) +"cYi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/hallway/secondary/exit/escape_pod) "cYx" = ( /obj/structure/window/reinforced/spawner/directional/north, /obj/structure/rack, @@ -11877,12 +11927,11 @@ /obj/machinery/holopad, /turf/open/floor/iron/white, /area/station/science/cytology) -"cZe" = ( -/obj/effect/turf_decal/tile/green/half, +"cZg" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark/side, -/area/station/hallway/secondary/exit/escape_pod) +/obj/machinery/light/small/broken/directional/east, +/turf/open/floor/plating, +/area/station/service/abandoned_gambling_den) "cZk" = ( /obj/structure/window/reinforced/spawner/directional/west, /obj/effect/turf_decal/trimline/purple/filled/line{ @@ -11959,6 +12008,11 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/hallway/secondary/exit/departure_lounge) +"daz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/pod, +/area/station/maintenance/floor4/port/fore) "daD" = ( /obj/effect/turf_decal/tile/red/half/contrasted, /obj/structure/disposalpipe/segment, @@ -11993,6 +12047,17 @@ /obj/item/stack/rods/fifty, /turf/open/floor/iron, /area/station/construction/mining/aux_base) +"dbr" = ( +/obj/machinery/field/generator, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/red/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured_large, +/area/station/engineering/lobby) "dbx" = ( /obj/effect/spawner/structure/window/reinforced/plasma, /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ @@ -12005,6 +12070,11 @@ dir = 4 }, /area/station/hallway/secondary/exit/departure_lounge) +"dbD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/space_heater, +/turf/open/floor/pod/light, +/area/station/maintenance/floor2/starboard/fore) "dbH" = ( /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /obj/machinery/door/airlock/hatch{ @@ -12048,16 +12118,6 @@ /obj/structure/sign/poster/random/directional/south, /turf/open/floor/carpet/purple, /area/station/commons/dorms/apartment1) -"dcp" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/red/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/textured_large, -/area/station/engineering/lobby) "dcw" = ( /obj/effect/spawner/random/structure/girder, /turf/open/floor/plating, @@ -12158,6 +12218,13 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron, /area/station/science/ordnance/testlab) +"ddL" = ( +/obj/structure/rack, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/decoration/material, +/obj/machinery/light/dim/directional/east, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard) "ddM" = ( /obj/structure/chair{ dir = 8 @@ -12185,6 +12252,10 @@ }, /turf/open/floor/iron/dark/side, /area/station/hallway/floor1/aft) +"dee" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/light/colour_cycle/dancefloor_b, +/area/station/medical/abandoned) "deg" = ( /obj/machinery/door/airlock/external{ name = "External Airlock" @@ -12220,6 +12291,12 @@ }, /turf/open/floor/iron, /area/station/commons/vacant_room/commissary) +"deD" = ( +/obj/machinery/shieldgen, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured_large, +/area/station/engineering/lobby) "deF" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/pod/light, @@ -12228,15 +12305,14 @@ /obj/structure/flora/bush/sparsegrass/style_random, /turf/open/floor/grass, /area/station/service/library/garden) +"deK" = ( +/obj/effect/turf_decal/trimline/green/warning, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor3/port/fore) "deM" = ( /turf/open/floor/iron/white/textured_large, /area/station/service/chapel) -"dfd" = ( -/obj/effect/turf_decal/trimline/blue/line, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server/upper) "dff" = ( /obj/machinery/firealarm/directional/north, /turf/open/floor/iron/dark/side{ @@ -12290,6 +12366,14 @@ /obj/structure/disposalpipe/trunk/multiz/down, /turf/open/floor/plating/foam, /area/station/maintenance/floor2/starboard/fore) +"dfM" = ( +/obj/effect/spawner/random/vending/snackvend, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/moffuchis_pizza/directional/north, +/turf/open/floor/wood, +/area/station/maintenance/floor1/port/aft) "dfR" = ( /obj/structure/disposalpipe/junction{ dir = 8 @@ -12308,13 +12392,6 @@ }, /turf/open/floor/iron/textured_large, /area/station/hallway/secondary/exit/departure_lounge) -"dge" = ( -/obj/effect/turf_decal/stripes{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/floor2/starboard/aft) "dgp" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -12392,13 +12469,15 @@ /obj/machinery/firealarm/directional/east, /turf/open/floor/iron, /area/station/commons/locker) -"dgZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +"dhg" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, /obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/abandoned) +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/contraband/landmine, +/turf/open/floor/engine, +/area/station/maintenance/floor4/starboard/aft) "dhs" = ( /obj/structure/table/wood/fancy/royalblack, /obj/item/modular_computer/laptop/preset/civilian, @@ -12423,6 +12502,12 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron/white, /area/station/science/lobby) +"dhR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/smes, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/floor4/port/fore) "dhX" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -12453,13 +12538,6 @@ "diA" = ( /turf/closed/wall, /area/station/service/kitchen/coldroom) -"diK" = ( -/obj/structure/flora/bush/sparsegrass/style_random, -/obj/structure/flora/bush/flowers_yw/style_random, -/obj/structure/window/spawner/directional/south, -/obj/structure/window/spawner/directional/north, -/turf/open/floor/grass, -/area/station/hallway/secondary/exit/departure_lounge) "diS" = ( /obj/machinery/door/airlock/freezer{ name = "Bathroom" @@ -12493,6 +12571,13 @@ /obj/structure/chair/stool/bamboo, /turf/open/floor/iron/white/textured_large, /area/station/service/chapel/office) +"djg" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/dresser, +/turf/open/floor/wood/large, +/area/station/maintenance/floor4/starboard/aft) "dji" = ( /obj/structure/table, /obj/machinery/recharger, @@ -12607,6 +12692,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/station/medical/psychology) +"dkY" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/floor4/starboard/aft) "dla" = ( /obj/effect/spawner/random/structure/girder, /turf/open/floor/plating, @@ -12628,6 +12720,15 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/security/prison/safe) +"dlz" = ( +/obj/structure/sign/poster/contraband/atmosia_independence/directional/west, +/obj/machinery/light/small/directional/west, +/obj/machinery/light_switch/directional/south, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/wood/parquet, +/area/station/maintenance/floor2/port/aft) "dlI" = ( /obj/effect/turf_decal/siding/wood/corner{ dir = 1 @@ -12635,6 +12736,17 @@ /obj/machinery/light/directional/west, /turf/open/floor/iron/dark, /area/station/command/heads_quarters/hos) +"dlQ" = ( +/obj/machinery/power/emitter, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/red/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured_large, +/area/station/engineering/lobby) "dlW" = ( /turf/closed/wall, /area/station/maintenance/floor4/starboard/aft) @@ -12646,17 +12758,17 @@ dir = 1 }, /area/station/hallway/floor4/fore) +"dme" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/structure/barricade, +/turf/open/floor/pod/light, +/area/station/maintenance/floor2/port/aft) "dmi" = ( /obj/effect/decal/cleanable/blood/old, /turf/open/floor/iron/dark/textured_corner{ dir = 1 }, /area/station/maintenance/floor1/starboard/aft) -"dmk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/warehouse) "dmx" = ( /obj/docking_port/stationary{ dir = 8; @@ -12764,12 +12876,6 @@ "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; @@ -12785,6 +12891,11 @@ }, /turf/open/floor/iron/dark, /area/station/medical/virology) +"doj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/pod, +/area/station/maintenance/floor4/port/fore) "dos" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 @@ -12797,6 +12908,13 @@ /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating, /area/station/maintenance/floor1/port/aft) +"dow" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/green, +/area/station/service/abandoned_gambling_den) "doy" = ( /obj/machinery/light/directional/east, /obj/machinery/shower/directional/south, @@ -12995,11 +13113,6 @@ /obj/structure/table, /turf/open/floor/iron/smooth, /area/station/tcommsat/computer) -"dqF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/broken/directional/south, -/turf/open/floor/plating, -/area/station/medical/abandoned) "dqJ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/decal/cleanable/dirt, @@ -13073,9 +13186,29 @@ }, /turf/open/floor/wood/parquet, /area/station/service/lawoffice) +"drH" = ( +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 1 + }, +/obj/item/stack/cable_coil/five, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/blue/anticorner/contrasted, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server/upper) "drJ" = ( /turf/open/floor/pod/light, /area/station/maintenance/floor2/starboard/aft) +"drN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/gibs/torso, +/obj/effect/decal/cleanable/blood, +/obj/effect/spawner/random/trash/garbage{ + spawn_loot_count = 3; + spawn_scatter_radius = 1 + }, +/obj/structure/spider/stickyweb, +/turf/open/floor/pod/dark, +/area/station/maintenance/floor4/starboard) "dsb" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -13085,14 +13218,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/hallway/floor2/fore) -"dsl" = ( -/obj/effect/turf_decal/trimline/green/arrow_cw{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/cargo/miningdock) "dso" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, @@ -13163,11 +13288,6 @@ /obj/machinery/newscaster/directional/south, /turf/open/floor/iron, /area/station/cargo/miningdock) -"dtv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/engine, -/area/station/maintenance/floor4/starboard/aft) "dtx" = ( /obj/structure/closet/firecloset, /turf/open/floor/pod/dark, @@ -13211,6 +13331,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/ai_monitored/security/armory) +"due" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/structure/window/reinforced/tinted/spawner/directional/north, +/turf/open/floor/iron/dark, +/area/station/hallway/floor2/fore) "dui" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/siding/wideplating_new/dark{ @@ -13245,26 +13372,12 @@ /obj/item/shard, /turf/open/floor/iron/dark, /area/station/maintenance/floor2/starboard/aft) -"duw" = ( -/obj/machinery/status_display/evac/directional/north, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet/purple, -/area/station/maintenance/floor1/port/aft) "duI" = ( /obj/structure/chair{ dir = 8 }, /turf/open/floor/iron/dark, /area/station/security/execution/education) -"duX" = ( -/obj/structure/sign/poster/official/moth_hardhat/directional/east, -/obj/structure/rack, -/obj/effect/turf_decal/trimline/purple/warning{ - dir = 4 - }, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/pod/light, -/area/station/maintenance/floor2/starboard/fore) "duZ" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -13277,15 +13390,6 @@ dir = 8 }, /area/station/security/range) -"dvc" = ( -/obj/structure/sign/poster/contraband/random/directional/west, -/obj/effect/turf_decal/tile/green/half/contrasted{ - dir = 8 - }, -/obj/item/plant_analyzer, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard) "dvq" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/transit_tube/curved/flipped{ @@ -13348,6 +13452,11 @@ /obj/machinery/growing/tray, /turf/open/floor/iron/white, /area/station/science/research/abandoned) +"dwA" = ( +/obj/machinery/light/dim/directional/north, +/obj/structure/window/reinforced/tinted/frosted/spawner/directional/east, +/turf/open/openspace, +/area/station/maintenance/floor4/port/aft) "dwD" = ( /obj/machinery/light/cold/no_nightlight/directional/north, /obj/structure/sign/poster/official/random/directional/north, @@ -13368,6 +13477,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/pod/light, /area/station/maintenance/floor1/starboard/fore) +"dwI" = ( +/obj/structure/table/reinforced, +/obj/item/screwdriver, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/floor2/starboard/aft) "dxd" = ( /turf/open/floor/engine/o2, /area/station/engineering/atmos) @@ -13446,10 +13561,6 @@ dir = 8 }, /area/station/service/hydroponics/garden) -"dxK" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/floor2/starboard/aft) "dxP" = ( /obj/structure/punching_bag, /turf/open/floor/noslip, @@ -13507,6 +13618,18 @@ }, /turf/open/floor/carpet/royalblack, /area/station/service/kitchen/diner) +"dzn" = ( +/obj/structure/table/wood, +/obj/machinery/computer/libraryconsole{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/east, +/turf/open/floor/carpet/red, +/area/station/service/library) "dzo" = ( /obj/machinery/computer/mech_bay_power_console{ dir = 4 @@ -13517,21 +13640,6 @@ }, /turf/open/floor/iron/textured_large, /area/station/cargo/warehouse) -"dzs" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/side{ - dir = 5 - }, -/area/station/hallway/secondary/exit) -"dzt" = ( -/obj/structure/window/plasma/spawner/directional/east, -/obj/structure/window/plasma/spawner/directional/south, -/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on, -/turf/open/floor/plating, -/area/station/science/server) "dzB" = ( /obj/structure/marker_beacon/burgundy, /obj/structure/cable, @@ -13539,6 +13647,11 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/pod/light, /area/station/maintenance/floor4/starboard/aft) +"dzC" = ( +/obj/effect/decal/cleanable/oil, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/circuit/telecomms, +/area/station/tcommsat/server/upper) "dzD" = ( /obj/structure/closet/firecloset/full, /turf/open/floor/iron/smooth, @@ -13632,16 +13745,21 @@ }, /turf/open/floor/iron, /area/station/engineering/atmos) +"dAR" = ( +/obj/structure/sign/poster/official/moth_hardhat/directional/east, +/obj/structure/rack, +/obj/effect/spawner/random/engineering/toolbox, +/obj/effect/turf_decal/tile/green/half{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/hallway/secondary/exit/escape_pod) "dAU" = ( /obj/effect/decal/cleanable/blood/tracks, /turf/open/floor/plating, /area/station/maintenance/floor1/port/aft) -"dBb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/floodlight_frame, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/floor4/starboard/aft) "dBf" = ( /obj/item/kirbyplants/random, /obj/structure/sign/painting/library{ @@ -13766,13 +13884,6 @@ /obj/machinery/vending/clothing, /turf/open/floor/iron/smooth_large, /area/station/hallway/secondary/entry) -"dDu" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/item/stack/cable_coil/cut, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/medical/abandoned) "dDv" = ( /obj/machinery/holopad, /obj/structure/disposalpipe/segment, @@ -13846,6 +13957,16 @@ }, /turf/open/floor/wood, /area/station/service/bar/atrium) +"dEr" = ( +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/station_engineer, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/iron/dark, +/area/station/engineering/lobby) "dEt" = ( /turf/closed/wall, /area/station/maintenance/floor2/starboard/aft) @@ -13864,17 +13985,6 @@ /obj/machinery/light/dim/directional/west, /turf/open/floor/catwalk_floor, /area/station/maintenance/floor2/port/aft) -"dEN" = ( -/obj/effect/turf_decal/trimline/green/warning{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/item/camera, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/dark, -/area/station/maintenance/floor3/port) "dEO" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -14002,11 +14112,6 @@ /obj/machinery/growing/tray, /turf/open/floor/iron/white, /area/station/science/research/abandoned) -"dFT" = ( -/obj/machinery/airalarm/directional/west, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/side, -/area/station/engineering/lobby) "dFZ" = ( /obj/structure/railing, /obj/machinery/light/dim/directional/north, @@ -14015,21 +14120,10 @@ /obj/structure/cable, /turf/open/floor/catwalk_floor, /area/station/maintenance/floor1/starboard/fore) -"dGe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/reinforced, -/obj/item/clothing/suit/toggle/labcoat, -/turf/open/floor/pod/dark, -/area/station/maintenance/floor2/starboard/aft) "dGf" = ( /obj/machinery/holopad, /turf/open/floor/iron/dark, /area/station/security/lockers) -"dGp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard/fore) "dGB" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 @@ -14102,11 +14196,6 @@ name = "lab floor" }, /area/station/science/genetics) -"dHD" = ( -/obj/structure/grille, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/security/checkpoint) "dHS" = ( /obj/effect/turf_decal/trimline/green/filled/arrow_cw{ dir = 10 @@ -14130,11 +14219,6 @@ /obj/effect/landmark/start/assistant, /turf/open/floor/carpet/royalblack, /area/station/service/kitchen/diner) -"dIh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/table_or_rack, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/port) "dIi" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 10 @@ -14145,11 +14229,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/station/commons/vacant_room/commissary) -"dIl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard) "dIv" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -14204,6 +14283,17 @@ /obj/effect/turf_decal/trimline/green/filled/line, /turf/open/floor/iron/dark, /area/station/hallway/floor2/fore) +"dJa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/green/half{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/vending/wallmed/directional/north, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/hallway/secondary/exit/escape_pod) "dJc" = ( /obj/item/radio/intercom/directional/north, /obj/structure/disposalpipe/segment{ @@ -14309,15 +14399,6 @@ /obj/structure/kitchenspike, /turf/open/floor/pod/dark, /area/station/maintenance/floor3/port) -"dKf" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/contraband/landmine, -/turf/open/floor/engine, -/area/station/maintenance/floor4/starboard/aft) "dKk" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/pod/dark, @@ -14424,11 +14505,6 @@ }, /turf/open/floor/iron/dark, /area/station/security/checkpoint/third) -"dLL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/pod, -/area/station/maintenance/floor4/port/fore) "dLT" = ( /obj/machinery/door/airlock/external{ name = "Atmospherics External Access" @@ -14590,17 +14666,15 @@ /obj/effect/spawner/random/structure/crate, /turf/open/floor/pod/light, /area/station/maintenance/floor1/port) -"dNI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/delivery, -/obj/item/stack/sheet/cloth/five, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/floor2/port/aft) "dNL" = ( /obj/structure/frame/machine, /turf/open/floor/engine, /area/station/maintenance/floor1/port/aft) +"dNM" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/atm/directional/north, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/exit/departure_lounge) "dNU" = ( /obj/structure/table, /obj/item/paper_bin, @@ -14616,6 +14690,12 @@ /obj/machinery/duct, /turf/open/floor/wood/tile, /area/station/command/heads_quarters/captain/private) +"dOb" = ( +/obj/structure/table/reinforced, +/obj/item/modular_computer/laptop, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/floor2/starboard/aft) "dOg" = ( /obj/effect/turf_decal/trimline/green/filled/line, /obj/effect/turf_decal/trimline/green/filled/line{ @@ -14807,6 +14887,12 @@ /obj/effect/spawner/random/trash/mess, /turf/open/floor/pod/light, /area/station/maintenance/floor4/port/fore) +"dQz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/pod/light, +/area/station/maintenance/floor1/port/aft) "dQH" = ( /obj/effect/turf_decal/tile/blue/opposingcorners, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -14866,10 +14952,24 @@ }, /turf/open/floor/pod/dark, /area/station/cargo/storage) +"dRq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/grille/broken, +/turf/open/floor/plating, +/area/station/medical/abandoned) "dRs" = ( /obj/machinery/camera/autoname/directional/north, /turf/open/floor/iron/dark, /area/station/hallway/floor1/fore) +"dRD" = ( +/obj/effect/decal/remains/human, +/obj/effect/turf_decal/tile/red/half{ + dir = 1 + }, +/obj/structure/window/reinforced/tinted/frosted/spawner/directional/north, +/turf/open/floor/stone, +/area/station/maintenance/floor1/port) "dRE" = ( /obj/machinery/holopad, /turf/open/floor/iron/smooth, @@ -14978,6 +15078,19 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/pod/light, /area/station/maintenance/floor1/starboard/fore) +"dSO" = ( +/obj/machinery/power/smes/engineering{ + input_attempt = 0; + input_level = 60000; + inputting = 0; + output_attempt = 0; + output_level = 60000; + outputting = 0 + }, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/smooth_large, +/area/station/maintenance/floor2/starboard) "dSS" = ( /obj/effect/spawner/structure/window/hollow/reinforced/plasma/middle, /obj/structure/girder/reinforced, @@ -14997,14 +15110,6 @@ }, /turf/open/floor/bamboo/tatami/black, /area/station/commons/storage/art) -"dTk" = ( -/obj/item/storage/pill_bottle, -/obj/effect/spawner/random/trash/graffiti{ - pixel_x = -32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/light/colour_cycle/dancefloor_a, -/area/station/medical/abandoned) "dTm" = ( /obj/effect/turf_decal/tile/yellow/opposingcorners, /turf/open/floor/iron/white/small, @@ -15131,6 +15236,11 @@ }, /turf/open/floor/iron/white, /area/station/security/medical) +"dVr" = ( +/obj/item/melee/skateboard/improvised, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor1/starboard/fore) "dVt" = ( /obj/structure/railing{ dir = 4 @@ -15240,6 +15350,12 @@ }, /turf/open/floor/engine/vacuum, /area/station/science/ordnance/freezerchamber) +"dWC" = ( +/obj/effect/turf_decal/bot, +/obj/effect/spawner/random/structure/crate, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/smooth, +/area/station/cargo/warehouse) "dWF" = ( /obj/effect/turf_decal/siding/wideplating_new/dark, /obj/effect/turf_decal/siding/wideplating_new/dark{ @@ -15299,13 +15415,6 @@ }, /turf/open/floor/iron/white, /area/station/medical/treatment_center) -"dXb" = ( -/obj/effect/turf_decal/stripes{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/floor2/starboard/fore) "dXc" = ( /obj/machinery/air_sensor/ordnance_burn_chamber, /turf/open/floor/engine/vacuum, @@ -15357,17 +15466,6 @@ dir = 4 }, /area/station/hallway/floor2/fore) -"dXR" = ( -/obj/effect/turf_decal/trimline/blue/corner{ - dir = 4 - }, -/obj/machinery/light/small/blacklight/directional/west, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server/upper) "dXX" = ( /obj/structure/window/reinforced/spawner/directional/west, /obj/machinery/rnd/production/techfab/department/security, @@ -15398,25 +15496,20 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/catwalk_floor, /area/station/maintenance/floor1/port/fore) -"dYn" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/brown/filled/mid_joiner{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atm/directional/south, -/turf/open/floor/carpet/red, -/area/station/service/theater) "dYr" = ( /obj/effect/turf_decal/stripes/line, /obj/machinery/newscaster/directional/north, /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/maintenance/disposal/incinerator) +"dYt" = ( +/obj/effect/decal/cleanable/oil, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/pod, +/area/station/maintenance/floor4/starboard/aft) "dYv" = ( /obj/effect/mapping_helpers/airlock/access/all/medical/cmo, /obj/effect/turf_decal/tile/blue/fourcorners, @@ -15435,6 +15528,15 @@ }, /turf/open/floor/plating, /area/station/science/genetics) +"dYz" = ( +/obj/structure/window/reinforced/tinted/spawner/directional/south, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/iron/dark/textured, +/area/station/medical/morgue) "dYB" = ( /obj/effect/turf_decal/tile/green/anticorner, /obj/structure/rack, @@ -15549,6 +15651,11 @@ dir = 1 }, /area/station/commons/locker) +"eaz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/mess, +/turf/open/floor/engine, +/area/station/maintenance/floor4/starboard/aft) "eaB" = ( /obj/structure/chair/comfy/carp, /obj/effect/decal/cleanable/dirt, @@ -15809,12 +15916,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/station/maintenance/floor2/starboard/aft) -"eeN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/gibs/up, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/pod/dark, -/area/station/maintenance/floor4/starboard) "efa" = ( /obj/structure/railing/corner{ dir = 8 @@ -15976,6 +16077,16 @@ /obj/structure/sign/poster/official/random/directional/north, /turf/open/floor/iron/dark, /area/station/hallway/floor2/aft) +"ehi" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/blue/half{ + dir = 8 + }, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/medical/chemistry) "ehk" = ( /obj/structure/table/wood, /obj/item/folder/blue, @@ -16006,21 +16117,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/white, /area/station/science/lobby) -"ehr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/table/reinforced, -/obj/item/electronics/apc{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/electronics/apc, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/port/fore) "ehu" = ( /obj/structure/chair/sofa/corp{ dir = 4 @@ -16088,6 +16184,11 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark/side, /area/station/command/teleporter) +"ehY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine, +/area/station/maintenance/floor4/starboard/aft) "eir" = ( /obj/machinery/door/airlock/hatch{ name = "Maintenance Access" @@ -16125,11 +16226,6 @@ dir = 8 }, /area/station/hallway/floor2/fore) -"eiJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/closet_maintenance, -/turf/open/floor/pod/light, -/area/station/maintenance/floor3/starboard/aft) "eiM" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -16140,11 +16236,6 @@ /obj/effect/turf_decal/stripes/end, /turf/open/floor/pod/light, /area/station/maintenance/floor4/port/fore) -"eiP" = ( -/obj/effect/turf_decal/tile/blue/half, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/white/textured_edge, -/area/station/medical/abandoned) "eiV" = ( /obj/structure/chair/sofa/bench/left{ dir = 1 @@ -16215,16 +16306,6 @@ }, /turf/open/floor/plating, /area/station/maintenance/floor3/starboard/aft) -"ejI" = ( -/obj/effect/turf_decal/trimline/green/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/dark, -/area/station/maintenance/floor2/starboard) "ejK" = ( /obj/structure/extinguisher_cabinet/directional/east, /obj/machinery/power/apc/auto_name/directional/south, @@ -16245,25 +16326,11 @@ /obj/structure/grille, /turf/open/floor/plating, /area/station/maintenance/floor1/starboard/fore) -"ekk" = ( -/obj/structure/rack, -/obj/item/trash/boritos/red{ - pixel_x = 4; - pixel_y = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor1/port/aft) "eky" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/light/dim/directional/south, /turf/open/floor/pod/light, /area/station/maintenance/floor1/port) -"ekz" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor1/starboard/fore) "ekB" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -16288,6 +16355,15 @@ /obj/effect/spawner/random/medical/surgery_tool, /turf/open/floor/iron/white, /area/station/maintenance/floor3/starboard/aft) +"ekR" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/trimline/red/line{ + dir = 10 + }, +/obj/machinery/airalarm/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard/aft) "ekY" = ( /obj/machinery/atmospherics/pipe/smart/manifold/green/visible{ dir = 4 @@ -16297,13 +16373,6 @@ }, /turf/open/floor/iron, /area/station/engineering/atmos/project) -"ell" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/white/line{ - dir = 5 - }, -/turf/open/floor/pod, -/area/station/maintenance/floor4/starboard/aft) "elo" = ( /obj/effect/turf_decal/delivery, /obj/machinery/door/firedoor/heavy, @@ -16484,13 +16553,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/commons/vacant_room/commissary) -"emy" = ( -/obj/machinery/biogenerator, -/obj/structure/window/reinforced/spawner/directional/north, -/obj/structure/window/reinforced/spawner/directional/south, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/station/service/hydroponics) "emI" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 @@ -16545,14 +16607,6 @@ }, /turf/open/floor/iron/smooth_large, /area/station/hallway/secondary/entry) -"emZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/generic_maintenance_landmark, -/turf/open/floor/engine, -/area/station/maintenance/floor4/starboard/aft) "ena" = ( /obj/machinery/door/window/left/directional/south{ name = "Pen 2"; @@ -16598,13 +16652,6 @@ /mob/living/basic/mothroach, /turf/open/floor/noslip, /area/station/maintenance/floor1/port) -"enE" = ( -/obj/structure/table/wood, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/item/gun/ballistic/revolver/russian, -/turf/open/floor/wood/large, -/area/station/maintenance/floor4/starboard/aft) "enF" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -16680,15 +16727,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/cargo/storage) -"eov" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/item/flashlight/flare, -/turf/open/floor/engine, -/area/station/maintenance/floor4/starboard/aft) "eoG" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -16731,11 +16769,6 @@ }, /turf/open/floor/iron/smooth, /area/station/cargo/sorting) -"epk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/box, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/port/fore) "epm" = ( /obj/structure/railing, /turf/open/floor/iron, @@ -16776,11 +16809,6 @@ dir = 8 }, /area/station/medical/pharmacy) -"epQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/marker_beacon/ten, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard/fore) "epW" = ( /obj/structure/curtain, /obj/effect/turf_decal/trimline/blue/filled/line{ @@ -16837,9 +16865,41 @@ }, /turf/open/floor/pod/light, /area/station/maintenance/floor2/port/fore) +"erf" = ( +/obj/machinery/door/airlock{ + name = "Escape Pod C" + }, +/obj/effect/turf_decal/tile/green/half{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/exit/escape_pod) +"erg" = ( +/obj/machinery/atmospherics/components/unary/portables_connector{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/floor2/port) "erp" = ( /turf/open/floor/iron/smooth, /area/station/hallway/floor4/aft) +"erI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/green/half{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/hallway/secondary/exit/escape_pod) "erN" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -16924,14 +16984,6 @@ }, /turf/open/floor/iron/dark, /area/station/hallway/floor1/aft) -"esH" = ( -/obj/effect/spawner/random/structure/crate, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/floor2/port/aft) "esR" = ( /obj/structure/table/wood/fancy/red, /obj/item/food/grown/harebell, @@ -16997,6 +17049,14 @@ }, /turf/open/floor/pod/dark, /area/station/maintenance/floor3/starboard) +"euj" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/engine, +/area/station/maintenance/floor4/starboard/aft) "eur" = ( /obj/effect/mapping_helpers/airlock/access/any/supply/mining, /obj/machinery/door/airlock/glass_large{ @@ -17092,15 +17152,14 @@ }, /turf/open/floor/iron, /area/station/hallway/floor2/fore) +"evv" = ( +/obj/structure/closet/firecloset/full, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard/fore) "evx" = ( /turf/open/floor/pod/dark, /area/station/maintenance/floor2/port) -"evz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/pod/light, -/area/station/maintenance/floor1/port/aft) "evI" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -17129,6 +17188,15 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/commons/vacant_room/commissary) +"evQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/obj/machinery/light_switch/directional/east, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/library/printer) "evR" = ( /obj/effect/turf_decal/stripes/white/line{ dir = 8 @@ -17237,6 +17305,11 @@ /obj/machinery/atmospherics/pipe/smart/manifold/purple/visible/layer2, /turf/open/floor/iron/dark, /area/station/science/ordnance/testlab) +"exF" = ( +/obj/machinery/plumbing/bottler, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard/aft) "exK" = ( /obj/machinery/light/cold/no_nightlight/directional/east, /obj/effect/turf_decal/trimline/green/warning, @@ -17264,6 +17337,21 @@ dir = 1 }, /area/station/hallway/floor1/aft) +"eyr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/item/electronics/apc{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/electronics/apc, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/port/fore) "eyI" = ( /obj/machinery/announcement_system, /turf/open/floor/circuit/telecomms, @@ -17331,11 +17419,6 @@ /obj/machinery/electrolyzer, /turf/open/floor/iron/dark, /area/station/maintenance/disposal/incinerator) -"ezI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/dim/directional/east, -/turf/open/floor/iron/dark, -/area/station/maintenance/floor2/starboard/aft) "ezK" = ( /obj/machinery/iv_drip, /obj/machinery/airalarm/directional/east, @@ -17422,17 +17505,6 @@ }, /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, -/obj/effect/spawner/random/structure/crate_abandoned, -/turf/open/floor/pod/light, -/area/station/maintenance/floor1/port/aft) "eBy" = ( /obj/effect/turf_decal/tile/red/half, /obj/machinery/duct, @@ -17552,6 +17624,14 @@ /obj/effect/turf_decal/trimline/green/filled/line, /turf/open/floor/iron/dark, /area/station/medical/virology) +"eDV" = ( +/obj/structure/table/wood, +/obj/machinery/chem_dispenser/drinks/beer{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/station/service/abandoned_gambling_den) "eEd" = ( /obj/machinery/door/airlock/command/glass{ name = "Ancient Office" @@ -17615,15 +17695,6 @@ /obj/effect/landmark/start/station_engineer, /turf/open/floor/iron/dark, /area/station/engineering/lobby) -"eEB" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/spawner/random/structure/crate, -/turf/open/floor/iron/smooth, -/area/station/cargo/warehouse) "eEE" = ( /obj/structure/railing{ dir = 5 @@ -17631,11 +17702,6 @@ /obj/structure/marker_beacon/burgundy, /turf/open/floor/plating/airless, /area/station/solars/starboard/aft) -"eEN" = ( -/obj/structure/closet/firecloset/full, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/port) "eEQ" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/iron/checker, @@ -17680,6 +17746,12 @@ /obj/machinery/light/dim/directional/east, /turf/open/floor/carpet/red, /area/station/service/theater) +"eFw" = ( +/obj/effect/spawner/random/decoration/glowstick, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard/aft) "eFx" = ( /obj/effect/turf_decal/trimline/purple/corner{ dir = 1 @@ -17805,13 +17877,6 @@ /obj/item/flashlight/lamp, /turf/open/floor/carpet, /area/station/security/detectives_office) -"eHG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) "eHK" = ( /obj/effect/turf_decal/trimline/white/line, /obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/monitored/air_output, @@ -17899,19 +17964,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/dark, /area/station/hallway/floor2/fore) -"eIz" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted/spawner/directional/west, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/disposal/bin{ - name = "Book Returns" - }, -/turf/open/floor/iron, -/area/station/service/library) "eIK" = ( /obj/structure/sign/poster/official/random/directional/north, /obj/effect/turf_decal/trimline/green/filled/line{ @@ -17928,12 +17980,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/catwalk_floor, /area/station/maintenance/floor1/port/fore) -"eJc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/solars/starboard/aft) "eJl" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -17963,12 +18009,6 @@ /obj/machinery/airalarm/directional/west, /turf/open/floor/iron, /area/station/engineering/engine_smes) -"eJF" = ( -/obj/machinery/airalarm/directional/south, -/obj/item/kirbyplants/random, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) "eJK" = ( /obj/effect/turf_decal/stripes/line, /obj/structure/cable, @@ -18178,30 +18218,6 @@ /obj/effect/spawner/random/structure/closet_maintenance, /turf/open/floor/pod/light, /area/station/maintenance/floor3/starboard/fore) -"eNa" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 - }, -/obj/effect/turf_decal/caution/white{ - pixel_y = -5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor2/starboard/aft) -"eNi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor3/starboard/aft) -"eNj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/emcloset/anchored, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/port) "eNk" = ( /obj/machinery/door/firedoor/heavy, /obj/effect/turf_decal/stripes/line{ @@ -18219,17 +18235,6 @@ /obj/structure/extinguisher_cabinet/directional/south, /turf/open/floor/iron/white/textured_large, /area/station/service/chapel) -"eNJ" = ( -/obj/effect/turf_decal/siding/wood, -/obj/structure/table/wood, -/obj/structure/window/reinforced/tinted/spawner/directional/west, -/turf/open/floor/carpet, -/area/station/commons/vacant_room/office) -"eNK" = ( -/obj/structure/window/reinforced/spawner/directional/south, -/obj/structure/window/reinforced/spawner/directional/west, -/turf/open/floor/grass, -/area/station/science/xenobiology) "eNM" = ( /obj/structure/window/reinforced/spawner/directional/south, /turf/open/floor/fake_snow{ @@ -18253,11 +18258,11 @@ }, /turf/open/floor/pod/light, /area/station/maintenance/floor3/port/aft) -"eOf" = ( +"eOa" = ( +/obj/structure/closet, /obj/effect/decal/cleanable/dirt, -/obj/structure/cable, /turf/open/floor/pod/light, -/area/station/maintenance/floor2/port/aft) +/area/station/maintenance/floor1/port/aft) "eOh" = ( /obj/structure/table/wood, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -18267,13 +18272,6 @@ /obj/effect/turf_decal/trimline/blue/line, /turf/open/floor/pod/light, /area/station/maintenance/floor2/port) -"eOo" = ( -/obj/effect/turf_decal/stripes{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/floor2/starboard/fore) "eOw" = ( /obj/structure/rack, /turf/open/floor/iron/dark, @@ -18287,6 +18285,14 @@ "eOP" = ( /turf/closed/wall/r_wall, /area/station/hallway/floor4/aft) +"eOT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/medical/chemistry) "eOY" = ( /obj/effect/spawner/random/structure/grille, /obj/structure/cable, @@ -18365,6 +18371,16 @@ /obj/effect/landmark/navigate_destination/dockesc, /turf/open/floor/iron/dark, /area/station/hallway/secondary/exit/departure_lounge) +"eQc" = ( +/obj/effect/mob_spawn/corpse/human/skeleton{ + pixel_y = 14 + }, +/obj/effect/turf_decal/tile/red/half{ + dir = 4 + }, +/obj/structure/window/reinforced/tinted/frosted/spawner/directional/east, +/turf/open/floor/stone, +/area/station/maintenance/floor1/port) "eQe" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -18380,6 +18396,11 @@ /obj/machinery/prisongate, /turf/open/floor/plating, /area/station/security/holding_cell) +"eQk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/emcloset, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/secondary/exit/escape_pod) "eQw" = ( /obj/machinery/firealarm/directional/north, /turf/open/floor/pod/dark, @@ -18466,11 +18487,6 @@ /obj/item/clothing/mask/balaclava, /turf/open/floor/iron/dark, /area/station/hallway/secondary/service) -"eRZ" = ( -/obj/effect/spawner/random/maintenance/two, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard) "eSa" = ( /obj/machinery/airalarm/directional/south, /obj/effect/spawner/random/trash/hobo_squat, @@ -18488,6 +18504,21 @@ /obj/machinery/duct, /turf/open/floor/iron/kitchen, /area/station/service/kitchen) +"eSo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/turf/open/floor/pod/light, +/area/station/maintenance/floor3/starboard/fore) +"eSr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/white, +/area/station/maintenance/floor3/starboard/aft) "eSw" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/chair/stool/directional/south, @@ -18517,12 +18548,36 @@ /obj/machinery/camera/autoname/directional/east, /turf/open/floor/catwalk_floor, /area/station/hallway/floor1/aft) +"eTl" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured_large, +/area/station/cargo/storage) +"eTn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/growing/tray, +/turf/open/floor/plating, +/area/station/maintenance/floor4/starboard) "eTp" = ( /obj/effect/spawner/structure/window/hollow/end{ dir = 1 }, /turf/open/floor/plating, /area/station/maintenance/floor3/starboard) +"eTr" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/floor4/starboard) +"eTE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/garbage{ + spawn_loot_count = 3; + spawn_scatter_radius = 1 + }, +/turf/open/floor/pod/light, +/area/station/maintenance/floor3/starboard/aft) "eTH" = ( /obj/structure/flora/bush/sparsegrass/style_random, /mob/living/carbon/human/species/monkey, @@ -18612,15 +18667,6 @@ /obj/structure/railing, /turf/open/floor/pod/light, /area/station/maintenance/floor1/port) -"eUZ" = ( -/obj/structure/table, -/obj/effect/spawner/random/food_or_drink/snack, -/obj/effect/spawner/random/food_or_drink/snack, -/obj/item/food/gumball, -/obj/item/food/gumball, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard) "eVe" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -18638,6 +18684,18 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/pod/light, /area/station/maintenance/floor1/port) +"eVn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/generic_maintenance_landmark, +/turf/open/floor/pod, +/area/station/maintenance/floor4/port/fore) +"eVS" = ( +/obj/machinery/camera/autoname/directional/north, +/obj/machinery/atm/directional/north, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/hallway/floor3/aft) "eVU" = ( /obj/structure/lattice/catwalk, /turf/open/openspace, @@ -18721,14 +18779,6 @@ /obj/structure/stairs/north, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/floor1/fore) -"eWW" = ( -/obj/effect/turf_decal/trimline/red/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/duct, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard/aft) "eWY" = ( /obj/effect/turf_decal/stripes/line{ dir = 9 @@ -18783,16 +18833,17 @@ "eXy" = ( /turf/closed/wall, /area/station/science/breakroom) -"eXB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/emcloset/anchored, -/turf/open/floor/pod/dark, -/area/station/maintenance/floor3/port/aft) "eXI" = ( /obj/structure/flora/bush/sparsegrass/style_random, /obj/structure/flora/bush/lavendergrass/style_random, /turf/open/floor/grass, /area/station/security/courtroom) +"eXS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor1/port/aft) "eXT" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 1 @@ -18820,13 +18871,6 @@ /obj/structure/lattice/catwalk, /turf/open/floor/engine/hull/reinforced, /area/space/nearstation) -"eYp" = ( -/obj/effect/turf_decal/trimline/green/warning{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor2/starboard) "eYq" = ( /obj/effect/turf_decal/trimline/green/filled/line, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -18839,6 +18883,11 @@ /obj/machinery/firealarm/directional/east, /turf/open/floor/iron/dark, /area/station/security/brig) +"eYC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/port/fore) "eYN" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -18846,11 +18895,13 @@ /obj/structure/cable, /turf/open/floor/iron/chapel, /area/station/service/chapel) -"eYY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/built/directional/south, -/turf/open/floor/catwalk_floor/iron_smooth, -/area/station/cargo/warehouse) +"eYW" = ( +/obj/machinery/vending/wallmed/directional/south, +/obj/structure/bed/medical/emergency, +/obj/machinery/iv_drip, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/iron/white, +/area/station/security/medical) "eZa" = ( /obj/structure/railing{ dir = 4 @@ -18913,14 +18964,6 @@ /obj/effect/landmark/start/psychologist, /turf/open/floor/iron/white, /area/station/medical/psychology) -"faj" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 - }, -/obj/structure/window/reinforced/tinted/spawner/directional/north, -/obj/structure/closet/masks, -/turf/open/floor/iron/dark, -/area/station/hallway/floor2/fore) "fak" = ( /obj/effect/turf_decal/trimline/blue/filled/line, /obj/machinery/holopad, @@ -18960,12 +19003,6 @@ /obj/machinery/light/directional/north, /turf/open/floor/iron/dark, /area/station/command/bridge) -"faL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate/freezer, -/obj/effect/spawner/random/medical/memeorgans, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/port/fore) "faM" = ( /obj/machinery/airalarm/directional/north, /obj/structure/cable, @@ -18988,6 +19025,13 @@ }, /turf/open/floor/iron/dark, /area/station/commons/storage/tools) +"faU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/floor2/port) "faW" = ( /obj/machinery/light/directional/west, /obj/machinery/computer/camera_advanced/base_construction/aux{ @@ -19060,13 +19104,11 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/catwalk_floor/iron, /area/station/cargo/lobby) -"fbX" = ( -/obj/structure/flora/bush/sparsegrass/style_random, -/obj/structure/window/spawner/directional/east, -/obj/structure/window/spawner/directional/north, -/obj/structure/window/spawner/directional/south, -/turf/open/floor/grass, -/area/station/hallway/secondary/exit/departure_lounge) +"fbR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes, +/turf/open/floor/iron, +/area/station/maintenance/floor2/starboard/aft) "fcc" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -19081,13 +19123,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark/textured, /area/station/commons/fitness) -"fci" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 - }, -/obj/structure/window/reinforced/tinted/spawner/directional/north, -/turf/open/floor/iron/dark, -/area/station/hallway/floor2/fore) "fco" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 @@ -19101,15 +19136,6 @@ /obj/structure/cable, /turf/open/floor/engine, /area/station/engineering/supermatter/room) -"fcz" = ( -/obj/structure/railing, -/obj/effect/turf_decal/trimline/green/warning{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor2/starboard) "fcC" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -19165,6 +19191,19 @@ dir = 9 }, /area/station/command/bridge) +"fdQ" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/warning{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor2/starboard) "fdV" = ( /obj/item/radio/intercom/directional/south, /turf/open/floor/iron/dark, @@ -19178,14 +19217,6 @@ }, /turf/open/floor/plating, /area/station/medical/surgery/fore) -"fdX" = ( -/obj/item/stack/sheet/iron, -/obj/effect/decal/cleanable/blood/footprints{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/floor3/starboard/aft) "feh" = ( /obj/effect/turf_decal/trimline/white/arrow_ccw, /obj/effect/turf_decal/trimline/white/mid_joiner, @@ -19205,6 +19236,10 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/space/basic, /area/space/nearstation) +"fes" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/station/service/abandoned_gambling_den) "fey" = ( /obj/effect/turf_decal/trimline/yellow/warning, /obj/machinery/button/elevator/directional/west{ @@ -19261,16 +19296,6 @@ "ffb" = ( /turf/open/floor/iron, /area/station/service/hydroponics/garden) -"ffd" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 - }, -/obj/structure/window/reinforced/tinted/spawner/directional/north, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/hallway/floor2/fore) "ffe" = ( /turf/closed/wall/r_wall, /area/station/security/holding_cell) @@ -19314,6 +19339,14 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/station/medical/virology) +"ffP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/wood, +/area/station/maintenance/floor3/starboard/aft) "ffS" = ( /obj/effect/turf_decal/stripes/white/line{ dir = 1 @@ -19331,14 +19364,6 @@ }, /turf/open/floor/iron, /area/station/hallway/floor2/fore) -"ffV" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/wood, -/area/station/service/abandoned_gambling_den) "ffY" = ( /obj/machinery/vending/snack/blue, /obj/effect/turf_decal/tile/blue/fourcorners, @@ -19376,17 +19401,6 @@ /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, -/obj/structure/disposalpipe/trunk/multiz, -/turf/open/floor/iron/dark/textured_large, -/area/station/cargo/drone_bay) "fhl" = ( /obj/structure/bed{ dir = 1 @@ -19401,6 +19415,14 @@ /obj/effect/landmark/start/assistant, /turf/open/floor/carpet/purple, /area/station/commons/dorms/apartment1) +"fhq" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/turf_decal/caution/stand_clear/white, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor2/starboard/aft) "fhr" = ( /obj/structure/closet/emcloset, /obj/effect/turf_decal/trimline/yellow/filled/line{ @@ -19430,13 +19452,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/dark, /area/station/medical/virology) -"fhA" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/floor2/port/aft) "fhG" = ( /obj/structure/table/wood, /obj/effect/turf_decal/tile/blue/fourcorners, @@ -19460,16 +19475,6 @@ }, /turf/open/floor/wood, /area/station/hallway/secondary/entry) -"fhY" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 - }, -/obj/structure/window/reinforced/tinted/spawner/directional/north, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/hallway/floor2/fore) "fhZ" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -19496,12 +19501,6 @@ }, /turf/open/floor/plating, /area/station/maintenance/floor3/starboard) -"fiX" = ( -/obj/structure/chair/comfy/brown, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/assistant, -/turf/open/floor/pod/light, -/area/station/maintenance/floor3/port/fore) "fja" = ( /turf/closed/wall/r_wall, /area/station/science/lobby) @@ -19642,14 +19641,6 @@ /obj/structure/cable, /turf/open/floor/carpet/orange, /area/station/service/chapel/funeral) -"fkv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/pod/dark, -/area/station/maintenance/floor4/starboard) "fkA" = ( /turf/closed/wall/r_wall, /area/station/security/execution/education) @@ -19738,15 +19729,6 @@ /obj/structure/table/wood, /turf/open/floor/wood/tile, /area/station/service/library) -"flw" = ( -/obj/structure/window/reinforced/tinted/spawner/directional/north, -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 - }, -/obj/structure/punching_bag, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/hallway/floor2/fore) "flS" = ( /turf/open/floor/carpet/orange, /area/station/service/chapel/office) @@ -19786,11 +19768,6 @@ /obj/effect/spawner/random/structure/tank_holder, /turf/open/floor/pod/light, /area/station/maintenance/floor1/port/fore) -"fmF" = ( -/obj/effect/turf_decal/trimline/green/warning, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor3/port/fore) "fmK" = ( /obj/structure/mirror/directional/east, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -19823,15 +19800,6 @@ }, /turf/open/floor/plating, /area/station/maintenance/floor1/starboard/aft) -"fmQ" = ( -/obj/effect/turf_decal/stripes{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/light/cold/no_nightlight/directional/north, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/floor2/starboard) "fna" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -19913,6 +19881,10 @@ }, /turf/open/floor/iron, /area/station/hallway/floor1/fore) +"fnZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/solars/port/aft) "fod" = ( /obj/structure/table/wood/fancy/red, /obj/item/flashlight/flare/candle, @@ -19939,6 +19911,13 @@ }, /turf/open/floor/iron/white, /area/station/science/xenobiology/hallway) +"fol" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/dark, +/area/station/maintenance/floor3/port/aft) "fou" = ( /obj/effect/turf_decal/tile/blue/opposingcorners, /obj/structure/chair/plastic, @@ -19982,10 +19961,24 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/station/hallway/floor3/aft) +"foN" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/contraband/landmine, +/turf/open/floor/engine, +/area/station/maintenance/floor4/starboard/aft) "fpb" = ( /obj/structure/table/wood, /turf/open/floor/carpet/green, /area/station/commons/dorms/apartment2) +"fpf" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/terminal{ + dir = 4 + }, +/turf/open/floor/circuit/telecomms, +/area/station/tcommsat/server/upper) "fpg" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 1 @@ -19993,6 +19986,16 @@ /obj/machinery/firealarm/directional/north, /turf/open/floor/iron, /area/station/ai_monitored/command/storage/eva) +"fph" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/structure/window/reinforced/tinted/spawner/directional/north, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 9 + }, +/turf/open/floor/iron, +/area/station/hallway/floor2/fore) "fpk" = ( /obj/structure/filingcabinet, /obj/structure/filingcabinet, @@ -20008,11 +20011,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2, /turf/open/floor/plating, /area/station/hallway/floor1/aft) -"fpt" = ( -/obj/structure/table/reinforced, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/catwalk_floor/iron_dark, -/area/station/maintenance/floor2/starboard/aft) "fpv" = ( /obj/effect/turf_decal/trimline/blue/line, /obj/effect/decal/cleanable/dirt, @@ -20053,6 +20051,12 @@ "fpU" = ( /turf/open/floor/glass, /area/station/service/library) +"fpY" = ( +/obj/structure/chair/comfy/brown, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/assistant, +/turf/open/floor/pod/light, +/area/station/maintenance/floor3/port/fore) "fqe" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -20082,12 +20086,6 @@ }, /turf/open/floor/catwalk_floor, /area/station/maintenance/floor1/port/fore) -"fqE" = ( -/obj/effect/turf_decal/trimline/green/warning, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/closet_maintenance, -/turf/open/floor/pod/light, -/area/station/maintenance/floor3/port/fore) "fqJ" = ( /obj/structure/closet/bombcloset/security, /obj/effect/turf_decal/stripes/line{ @@ -20129,17 +20127,15 @@ }, /turf/open/floor/iron/white, /area/station/science/cytology) -"frE" = ( -/obj/effect/turf_decal/trimline/blue/line{ - dir = 4 - }, -/obj/machinery/light/small/blacklight/directional/west, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server/upper) "frL" = ( /turf/closed/wall, /area/station/engineering/gravity_generator) +"frP" = ( +/obj/effect/turf_decal/trimline/green/warning, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/structure/closet_maintenance, +/turf/open/floor/pod/light, +/area/station/maintenance/floor3/port/fore) "frU" = ( /obj/structure/filingcabinet/chestdrawer{ pixel_y = 2 @@ -20194,6 +20190,11 @@ "fsJ" = ( /turf/closed/wall/r_wall, /area/station/ai_monitored/turret_protected/ai_upload) +"fsP" = ( +/obj/effect/spawner/random/maintenance/two, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard) "fsR" = ( /obj/item/kirbyplants/random, /obj/machinery/light/directional/east, @@ -20208,6 +20209,11 @@ dir = 1 }, /area/station/hallway/floor4/fore) +"ftf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/maintenance/floor2/starboard/aft) "fti" = ( /obj/effect/turf_decal/tile/purple/opposingcorners, /obj/structure/disposalpipe/segment{ @@ -20259,6 +20265,11 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/cafeteria, /area/station/security/prison) +"ftz" = ( +/obj/structure/window/reinforced/tinted/frosted/spawner/directional/east, +/obj/structure/window/reinforced/tinted/frosted/spawner/directional/south, +/turf/open/openspace, +/area/station/maintenance/floor3/port) "ftJ" = ( /obj/structure/chair{ dir = 4 @@ -20292,19 +20303,6 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/security/interrogation) -"fur" = ( -/obj/structure/window/reinforced/tinted/frosted/spawner/directional/east, -/obj/structure/window/reinforced/tinted/frosted/spawner/directional/south, -/turf/open/openspace, -/area/station/maintenance/floor3/port) -"fuy" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/trimline/red/line{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard/aft) "fuH" = ( /obj/effect/turf_decal/trimline/green/warning{ dir = 4 @@ -20340,15 +20338,6 @@ }, /turf/open/floor/catwalk_floor, /area/station/maintenance/floor3/port) -"fve" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/siding/thinplating_new{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/shieldgen, -/turf/open/floor/iron/smooth, -/area/station/cargo/warehouse) "fvp" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 @@ -20397,6 +20386,15 @@ }, /turf/open/floor/mineral/silver, /area/station/service/chapel/funeral) +"fvM" = ( +/obj/item/stack/tile/iron/white, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/contraband/random/directional/north, +/turf/open/floor/plating, +/area/station/medical/abandoned) "fvO" = ( /obj/structure/sign/departments/cargo/directional/west, /turf/open/floor/iron/dark/smooth_large, @@ -20446,20 +20444,6 @@ }, /turf/open/floor/iron/dark, /area/station/engineering/atmos/pumproom) -"fwC" = ( -/obj/machinery/light/directional/north, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/iron, -/area/station/security/range) -"fwF" = ( -/obj/effect/turf_decal/trimline/blue/corner, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server/upper) "fwJ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/spawner/random/trash/graffiti{ @@ -20510,41 +20494,15 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/iron/dark, /area/station/hallway/floor4/aft) -"fxd" = ( -/obj/structure/closet/firecloset, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/engineering/lobby) "fxm" = ( /obj/effect/decal/cleanable/oil, /turf/open/floor/iron, /area/station/maintenance/floor2/starboard/aft) -"fxo" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible/layer2{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmos) "fxp" = ( /obj/structure/dresser, /obj/machinery/light/warm/directional/north, /turf/open/floor/wood/parquet, /area/station/command/heads_quarters/cmo) -"fxr" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/siding/thinplating_new{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/shieldgen, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/siding/thinplating_new{ - dir = 4 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron/smooth, -/area/station/cargo/warehouse) "fxC" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -20694,21 +20652,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/engineering/lobby) -"fzG" = ( -/obj/effect/turf_decal/trimline/green/warning{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor2/starboard) -"fzR" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "aband_armour"; - name = "Armoury Shutters" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/maintenance/floor2/starboard/aft) "fzU" = ( /turf/open/floor/wood/tile, /area/station/command/heads_quarters/captain/private) @@ -20735,31 +20678,34 @@ dir = 1 }, /area/station/commons/locker) -"fAp" = ( -/obj/machinery/door/airlock{ - name = "Escape Pod B" - }, -/obj/effect/turf_decal/tile/green/half{ - dir = 4 - }, +"fAk" = ( +/obj/effect/turf_decal/tile/green/half, /obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/turf_decal/tile/green/half{ - dir = 8 +/obj/structure/sign/warning/pods/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 }, -/turf/open/floor/iron/dark, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/dark/side, /area/station/hallway/secondary/exit/escape_pod) -"fAw" = ( -/obj/machinery/light/directional/west, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/turf_decal/delivery, +"fAv" = ( +/obj/effect/turf_decal/stripes, +/obj/structure/rack, +/obj/effect/spawner/random/maintenance, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/floor2/port/aft) +/turf/open/floor/pod/dark, +/area/station/maintenance/floor2/starboard) "fAz" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/station/service/kitchen) +"fAH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/plating, +/area/station/maintenance/floor4/starboard/aft) "fAP" = ( /obj/effect/turf_decal/trimline/purple/filled/corner{ dir = 1 @@ -20839,12 +20785,6 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/iron/dark, /area/station/hallway/floor3/aft) -"fBO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/airalarm/directional/west, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/floor2/port/aft) "fBP" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 1 @@ -20871,6 +20811,14 @@ /obj/structure/stairs/north, /turf/open/floor/iron/white/small, /area/station/medical/chemistry) +"fCo" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/smooth, +/area/station/cargo/warehouse) "fCp" = ( /turf/open/floor/plating/airless, /area/space) @@ -21029,11 +20977,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white, /area/station/medical/treatment_center) -"fDM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/port/fore) "fDN" = ( /obj/structure/table/wood, /obj/item/paper_bin, @@ -21078,12 +21021,6 @@ }, /turf/open/floor/mineral/silver, /area/station/service/chapel) -"fEr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/robot_debris/down, -/turf/open/floor/engine, -/area/station/maintenance/floor4/starboard/aft) "fEu" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 @@ -21091,6 +21028,15 @@ /obj/machinery/light/small/directional/west, /turf/open/floor/iron/dark, /area/station/hallway/secondary/service) +"fEB" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/hallway/secondary/exit) "fED" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -21113,6 +21059,22 @@ }, /turf/open/floor/iron, /area/station/cargo/miningdock) +"fER" = ( +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server/upper) +"fES" = ( +/obj/item/stack/sheet/cardboard, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/floor2/port/aft) "fEZ" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -21126,6 +21088,13 @@ /obj/structure/closet/firecloset/full, /turf/open/floor/iron, /area/station/hallway/floor3/aft) +"fFs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/station/command/heads_quarters/hop) "fFu" = ( /obj/effect/turf_decal/trimline/purple/line{ dir = 1 @@ -21164,6 +21133,11 @@ name = "lab floor" }, /area/station/science/genetics) +"fFW" = ( +/obj/structure/window/reinforced/tinted/spawner/directional/west, +/obj/structure/filingcabinet, +/turf/open/floor/wood, +/area/station/commons/vacant_room/office) "fFY" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -21211,10 +21185,6 @@ /obj/structure/falsewall, /turf/open/floor/plating, /area/station/maintenance/floor2/port/fore) -"fGC" = ( -/obj/structure/window/reinforced/tinted/frosted/spawner/directional/south, -/turf/open/openspace, -/area/station/maintenance/floor4/port/aft) "fGI" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -21230,15 +21200,6 @@ /obj/structure/closet/emcloset, /turf/open/floor/pod/light, /area/station/maintenance/floor2/port/fore) -"fGK" = ( -/obj/structure/rack, -/obj/item/trash/champagne_cork{ - pixel_x = 8; - pixel_y = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor1/port/aft) "fGW" = ( /obj/effect/turf_decal/tile/green/full, /obj/structure/rack, @@ -21317,14 +21278,6 @@ }, /turf/open/floor/iron, /area/station/engineering/atmos/office) -"fHE" = ( -/obj/effect/turf_decal/trimline/brown/warning{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/dark, -/area/station/maintenance/floor3/port/aft) "fHG" = ( /obj/machinery/atmospherics/components/binary/pump/layer4{ name = "Distro to External Ports" @@ -21372,10 +21325,6 @@ dir = 1 }, /area/station/engineering/storage/tech) -"fIz" = ( -/obj/structure/window/reinforced/tinted/frosted/spawner/directional/south, -/turf/open/openspace, -/area/station/maintenance/floor3/port) "fID" = ( /obj/structure/railing/corner{ dir = 8 @@ -21402,6 +21351,14 @@ /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, @@ -21505,13 +21462,6 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron/dark, /area/station/hallway/secondary/service) -"fKC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/textured_edge{ - dir = 8 - }, -/area/station/medical/chemistry) "fKD" = ( /obj/structure/table/wood, /obj/item/flashlight/lamp/green, @@ -21608,6 +21558,12 @@ }, /turf/open/floor/pod/dark, /area/station/maintenance/floor3/starboard) +"fLY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/textured_large, +/area/station/hallway/secondary/exit/departure_lounge) "fMa" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -21636,14 +21592,6 @@ "fMs" = ( /turf/open/floor/plating/airless, /area/station/maintenance/floor3/port/aft) -"fMB" = ( -/obj/effect/turf_decal/trimline/red/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/maintenance/two, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard/aft) "fMC" = ( /obj/item/radio/intercom/directional/west, /obj/structure/chair/comfy/shuttle{ @@ -21698,13 +21646,6 @@ /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 @@ -21759,6 +21700,15 @@ /obj/structure/extinguisher_cabinet/directional/east, /turf/open/floor/iron, /area/station/science/robotics/lab) +"fOp" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/shieldgen, +/turf/open/floor/iron/smooth, +/area/station/cargo/warehouse) "fOq" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -21975,6 +21925,11 @@ }, /turf/open/floor/iron, /area/station/hallway/floor2/fore) +"fRe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/cargo/warehouse) "fRm" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -22113,11 +22068,27 @@ }, /turf/open/floor/wood/large, /area/station/service/kitchen/kitchen_backroom) -"fTa" = ( +"fSY" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/table/reinforced, +/obj/item/stack/sheet/iron/twenty, +/obj/item/stack/sheet/glass/fifty{ + pixel_x = 3; + pixel_y = 3 + }, /obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/sandbags, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/port) +/turf/open/floor/iron, +/area/station/maintenance/floor2/port/aft) +"fSZ" = ( +/obj/machinery/door/airlock/mining{ + name = "Warehouse" + }, +/obj/effect/mapping_helpers/airlock/access/any/supply/general, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/iron, +/area/station/cargo/warehouse) "fTb" = ( /obj/effect/spawner/random/trash/grille_or_waste, /turf/open/floor/pod/light, @@ -22151,19 +22122,6 @@ 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, -/obj/effect/decal/cleanable/shreds, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard) "fTv" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -22291,13 +22249,6 @@ /obj/structure/sign/poster/random/directional/east, /turf/open/floor/iron, /area/station/service/hydroponics/garden/abandoned) -"fVk" = ( -/obj/effect/turf_decal/stripes{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/floor2/starboard) "fVq" = ( /obj/structure/chair/sofa/bench/right{ dir = 8 @@ -22322,6 +22273,13 @@ name = "boxing ring" }, /area/station/commons/fitness) +"fVB" = ( +/obj/effect/turf_decal/trimline/green/warning{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/dark, +/area/station/maintenance/floor2/starboard) "fVF" = ( /obj/structure/chair/office{ dir = 8 @@ -22372,6 +22330,12 @@ /obj/machinery/duct, /turf/open/floor/iron/kitchen, /area/station/service/kitchen) +"fWo" = ( +/obj/effect/turf_decal/trimline/purple/warning, +/obj/machinery/light/dim/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/dark, +/area/station/maintenance/floor2/starboard) "fWp" = ( /obj/effect/turf_decal/bot, /obj/structure/punching_bag, @@ -22385,6 +22349,12 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/iron, /area/station/hallway/floor1/aft) +"fWv" = ( +/obj/structure/bed/medical/emergency, +/obj/machinery/iv_drip, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron/white, +/area/station/security/medical) "fWz" = ( /obj/structure/ladder, /turf/open/floor/pod/dark, @@ -22423,6 +22393,14 @@ }, /turf/open/floor/iron, /area/station/cargo/storage) +"fXn" = ( +/obj/effect/spawner/random/structure/chair_maintenance{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/contraband/random/directional/east, +/turf/open/floor/plating, +/area/station/medical/abandoned) "fXq" = ( /turf/open/floor/plating, /area/station/maintenance/floor2/starboard/aft) @@ -22433,6 +22411,11 @@ "fXs" = ( /turf/closed/wall, /area/station/maintenance/floor4/port) +"fXv" = ( +/obj/structure/rack, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/white, +/area/station/medical/abandoned) "fXy" = ( /obj/effect/turf_decal/stripes/line, /obj/structure/cable, @@ -22459,6 +22442,11 @@ }, /turf/open/floor/iron/dark, /area/station/engineering/atmos/office) +"fXG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/library/printer) "fXM" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/left/directional/south{ @@ -22475,6 +22463,11 @@ }, /turf/open/floor/plating, /area/station/engineering/atmos/office) +"fXQ" = ( +/obj/structure/window/reinforced/tinted/frosted/spawner/directional/north, +/obj/structure/window/reinforced/tinted/frosted/spawner/directional/east, +/turf/open/openspace, +/area/station/maintenance/floor2/port) "fXU" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -22571,16 +22564,14 @@ }, /turf/open/floor/iron/dark, /area/station/commons/vacant_room/commissary) -"fYM" = ( -/obj/structure/table/wood/fancy/red, -/obj/item/flashlight/flare/candle{ - pixel_x = 1; - pixel_y = 7 - }, +"fYI" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/food/ready_donk, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/closet/toolcloset, /turf/open/floor/pod/light, -/area/station/maintenance/floor3/port/fore) +/area/station/maintenance/floor4/port/fore) "fYR" = ( /obj/structure/cable, /turf/open/floor/iron, @@ -22591,6 +22582,11 @@ /obj/machinery/teleport/station, /turf/open/floor/circuit, /area/station/ai_monitored/turret_protected/aisat) +"fZa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/structure/closet_maintenance, +/turf/open/floor/pod/light, +/area/station/maintenance/floor3/starboard/aft) "fZg" = ( /obj/structure/chair/sofa/bench, /obj/effect/turf_decal/tile/green/half/contrasted, @@ -22659,6 +22655,15 @@ /obj/effect/spawner/random/maintenance/three, /turf/open/floor/pod/light, /area/station/maintenance/floor1/port/fore) +"gaa" = ( +/obj/machinery/atm/directional/north, +/turf/open/floor/iron/dark, +/area/station/hallway/floor1/fore) +"gae" = ( +/obj/machinery/vending/boozeomat/all_access, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/station/service/abandoned_gambling_den) "gaf" = ( /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /obj/machinery/door/airlock/hatch{ @@ -22711,15 +22716,6 @@ /obj/structure/window/reinforced/spawner/directional/east, /turf/open/floor/grass, /area/station/service/chapel) -"gaT" = ( -/obj/structure/chair/wood{ - dir = 1 - }, -/obj/effect/turf_decal/siding/wood, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet/green, -/area/station/service/abandoned_gambling_den) "gaU" = ( /obj/machinery/light/small/directional/south, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -22819,17 +22815,6 @@ /obj/effect/spawner/random/entertainment/coin, /turf/open/floor/carpet/green, /area/station/service/abandoned_gambling_den) -"gcj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/poddoor/shutters{ - id = "warehouseqm" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron, -/area/station/cargo/warehouse) "gcs" = ( /obj/machinery/power/apc/auto_name/directional/south, /obj/effect/turf_decal/tile/green/half, @@ -22906,10 +22891,11 @@ /obj/structure/reagent_dispensers/plumbed, /turf/open/floor/pod/light, /area/station/maintenance/floor3/starboard/fore) -"gdr" = ( +"gdp" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) +/obj/item/clothing/head/costume/allies, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/port) "gdA" = ( /obj/effect/turf_decal/tile/green/half{ dir = 8 @@ -22924,16 +22910,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/engineering/gravity_generator) -"gdS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/tracks{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/spawner/random/contraband/landmine, -/turf/open/floor/wood, -/area/station/service/abandoned_gambling_den) "gdZ" = ( /obj/structure/cable, /obj/effect/landmark/navigate_destination/disposals, @@ -22973,20 +22949,11 @@ /obj/machinery/light/small/directional/east, /turf/open/floor/wood/tile, /area/station/service/library) -"get" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall, -/area/station/maintenance/floor3/port/aft) "geA" = ( /obj/effect/turf_decal/tile/blue/opposingcorners, /obj/item/kirbyplants/random, /turf/open/floor/iron/dark, /area/station/hallway/floor4/fore) -"geB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/bag/trash, -/turf/open/floor/pod/light, -/area/station/maintenance/floor2/port/aft) "geD" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/carpet/blue, @@ -23003,6 +22970,16 @@ /obj/effect/spawner/random/engineering/tracking_beacon, /turf/open/floor/plating/airless, /area/space/nearstation) +"geP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/footprints{ + dir = 8 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/station/service/abandoned_gambling_den) "geW" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -23046,11 +23023,22 @@ /obj/machinery/duct, /turf/open/floor/iron, /area/station/hallway/floor3/fore) -"gfF" = ( -/obj/structure/window/reinforced/tinted/frosted/spawner/directional/south, -/obj/structure/window/reinforced/tinted/frosted/spawner/directional/east, -/turf/open/openspace, -/area/station/maintenance/floor2/port) +"gfO" = ( +/obj/machinery/door/poddoor/shutters{ + id = "warehouseqm" + }, +/obj/machinery/button/door/directional/north{ + id = "warehouseqm" + }, +/obj/effect/decal/cleanable/dirt, +/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/machinery/door/firedoor, +/turf/open/floor/iron, +/area/station/cargo/warehouse) "gfP" = ( /obj/effect/turf_decal/siding/wood/end{ dir = 4 @@ -23071,6 +23059,11 @@ dir = 8 }, /area/station/engineering/storage/tech) +"ggb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/mineral/wood, +/turf/open/floor/plating, +/area/station/service/abandoned_gambling_den) "ggd" = ( /obj/structure/railing{ dir = 8 @@ -23178,6 +23171,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/science/robotics/lab) +"ghG" = ( +/obj/machinery/chem_master{ + name = "Hydroanalysis Device" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor1/port/aft) "ghH" = ( /obj/effect/turf_decal/tile/blue/half{ dir = 4 @@ -23221,11 +23221,6 @@ /obj/effect/turf_decal/tile/red, /turf/open/floor/iron/dark, /area/station/security/office) -"gid" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/mess, -/turf/open/floor/engine, -/area/station/maintenance/floor4/starboard/aft) "gii" = ( /obj/machinery/camera/motion/directional/east{ c_tag = "MiniSat - Fore"; @@ -23256,6 +23251,23 @@ "giv" = ( /turf/closed/wall, /area/station/service/janitor) +"giz" = ( +/obj/machinery/disposal/bin{ + name = "Book Returns" + }, +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/iron, +/area/station/service/library) "giM" = ( /obj/machinery/airalarm/directional/west, /obj/structure/table, @@ -23264,17 +23276,6 @@ }, /turf/open/floor/iron/kitchen, /area/station/service/kitchen) -"giQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/pod, -/area/station/maintenance/floor4/starboard/aft) -"giV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/grille, -/turf/open/floor/plating, -/area/station/maintenance/floor2/port/aft) "giX" = ( /turf/open/floor/pod/light, /area/station/maintenance/floor2/port/aft) @@ -23314,13 +23315,6 @@ /obj/item/storage/medkit/advanced, /turf/open/floor/wood/parquet, /area/station/command/heads_quarters/cmo) -"gjC" = ( -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/purple/warning, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/dark, -/area/station/maintenance/floor2/starboard) "gjH" = ( /obj/effect/turf_decal/tile/dark_blue/half/contrasted{ dir = 1 @@ -23349,17 +23343,15 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/checker, /area/station/commons/locker) -"gkx" = ( -/obj/machinery/atmospherics/components/binary/pump/layer2{ - dir = 8 - }, +"gks" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"gkI" = ( -/obj/machinery/field/generator, +/obj/structure/sign/poster/random/directional/south, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/library/printer) +"gkU" = ( +/obj/machinery/airalarm/directional/west, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/textured_large, +/turf/open/floor/iron/dark/side, /area/station/engineering/lobby) "gkX" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -23426,6 +23418,13 @@ /obj/structure/grille, /turf/open/floor/plating, /area/station/maintenance/floor4/starboard/fore) +"glB" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/medical/abandoned) "glH" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -23468,11 +23467,6 @@ /obj/structure/window/reinforced/spawner/directional/north, /turf/open/floor/engine, /area/station/science/xenobiology) -"gmg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/port/fore) "gmj" = ( /obj/structure/chair/office{ dir = 1 @@ -23523,11 +23517,6 @@ /obj/machinery/camera/autoname/directional/west, /turf/open/floor/catwalk_floor, /area/station/hallway/floor3/fore) -"gmQ" = ( -/obj/effect/spawner/random/trash/graffiti, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/solars/port/aft) "gmV" = ( /obj/structure/chair/comfy/carp, /obj/effect/decal/cleanable/glitter, @@ -23550,14 +23539,6 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/security/checkpoint/second) -"gns" = ( -/obj/effect/turf_decal/trimline/green/warning, -/obj/effect/turf_decal/stripes, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/dark, -/area/station/maintenance/floor2/starboard) "gnx" = ( /obj/machinery/door/airlock/highsecurity{ name = "Atmos Access" @@ -23590,13 +23571,6 @@ /obj/machinery/duct, /turf/open/floor/iron/dark/side, /area/station/security/office) -"goe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/maintenance/floor4/starboard/aft) "goh" = ( /obj/machinery/door/airlock/hatch{ name = "Maintenance Access" @@ -23686,16 +23660,6 @@ /obj/effect/spawner/random/structure/crate, /turf/open/floor/pod/light, /area/station/maintenance/floor2/port/fore) -"gpM" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/wood/tile, -/area/station/service/library/printer) "gpZ" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -23740,16 +23704,6 @@ /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/open/floor/pod/light, /area/station/maintenance/floor4/starboard) -"gqF" = ( -/obj/structure/rack, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/station/maintenance/floor3/starboard/aft) -"gqI" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/security/prison) "gqJ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -23788,11 +23742,6 @@ "grg" = ( /turf/open/floor/iron, /area/station/hallway/floor1/fore) -"gri" = ( -/obj/effect/turf_decal/stripes, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/floor2/starboard/aft) "grk" = ( /obj/effect/landmark/start/roboticist, /turf/open/floor/iron, @@ -23803,16 +23752,15 @@ dir = 4 }, /area/station/hallway/floor3/aft) +"grw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor2/starboard/aft) "grA" = ( /obj/structure/window/reinforced/spawner/directional/west, /obj/effect/spawner/random/structure/closet_maintenance, /turf/open/floor/pod/light, /area/station/maintenance/floor2/starboard/fore) -"grD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/maintenance/floor1/port/aft) "grI" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 @@ -23902,13 +23850,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/white, /area/station/science/xenobiology/hallway) -"gsN" = ( -/obj/structure/chair/sofa/bench/right{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/textured_large, -/area/station/hallway/secondary/exit/departure_lounge) "gsP" = ( /obj/effect/turf_decal/trimline/white/line{ dir = 4 @@ -23934,6 +23875,13 @@ /obj/machinery/portable_atmospherics/pump, /turf/open/floor/iron, /area/station/engineering/atmos) +"gsW" = ( +/obj/structure/sign/poster/contraband/hacking_guide/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/machinery/duct, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness) "gta" = ( /obj/structure/closet{ name = "Evidence Closet 2" @@ -23942,12 +23890,6 @@ /obj/machinery/airalarm/directional/south, /turf/open/floor/iron/dark, /area/station/security/evidence) -"gts" = ( -/obj/item/rack_parts, -/obj/item/weldingtool/mini, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard) "gtt" = ( /turf/open/floor/iron, /area/station/maintenance/disposal/incinerator) @@ -23968,6 +23910,17 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/engine, /area/station/engineering/supermatter/room) +"gtI" = ( +/obj/effect/turf_decal/trimline/purple/arrow_ccw, +/obj/machinery/door/firedoor/heavy, +/obj/effect/turf_decal/trimline/purple/mid_joiner, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/trimline/green/arrow_cw{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured_large, +/area/station/cargo/miningdock) "gtO" = ( /obj/structure/closet/athletic_mixed, /turf/open/floor/iron/dark, @@ -24016,11 +23969,6 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/service/kitchen/abandoned) -"gun" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/textured_large, -/area/station/cargo/storage) "guv" = ( /obj/effect/mapping_helpers/airlock/access/any/science/minisat, /obj/machinery/door/airlock/hatch{ @@ -24038,6 +23986,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white, /area/station/science/cytology) +"guD" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/structure/chair/stool/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/station/service/abandoned_gambling_den) "guF" = ( /obj/machinery/camera/autoname/directional/west, /obj/machinery/newscaster/directional/west, @@ -24061,6 +24016,13 @@ "guQ" = ( /turf/open/floor/engine/hull, /area/station/maintenance/floor1/starboard/aft) +"guU" = ( +/obj/machinery/atmospherics/components/binary/pump/layer2{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/engineering/atmos) "guZ" = ( /obj/item/stack/sheet/iron, /turf/open/floor/engine{ @@ -24074,22 +24036,6 @@ }, /turf/open/floor/iron/cafeteria, /area/station/service/theater) -"gvk" = ( -/obj/structure/cable, -/obj/structure/table/reinforced, -/obj/item/storage/fancy/donut_box, -/obj/machinery/atm/directional/north, -/turf/open/floor/iron/half{ - dir = 1 - }, -/area/station/engineering/lobby) -"gvn" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/catwalk_floor/iron_white, -/area/station/medical/abandoned) "gvy" = ( /obj/machinery/growing/tray, /obj/effect/decal/cleanable/dirt, @@ -24102,13 +24048,6 @@ /obj/machinery/duct, /turf/open/floor/iron/dark/textured, /area/station/commons/fitness) -"gvQ" = ( -/obj/effect/turf_decal/trimline/purple/warning{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor2/starboard/fore) "gvU" = ( /obj/structure/cable, /obj/machinery/power/apc/auto_name/directional/south, @@ -24148,11 +24087,6 @@ dir = 6 }, /area/station/hallway/floor2/aft) -"gwD" = ( -/obj/structure/frame/machine, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/circuit/telecomms, -/area/station/tcommsat/server/upper) "gwH" = ( /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, @@ -24166,14 +24100,15 @@ /obj/structure/chair/plastic, /turf/open/floor/iron/dark, /area/station/security/holding_cell) -"gwT" = ( -/obj/structure/railing{ - dir = 1 +"gwW" = ( +/obj/structure/cable, +/obj/machinery/power/smes/engineering{ + input_level = 60000; + output_level = 60000 }, -/obj/effect/spawner/random/engineering/tool, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor2/port/aft) +/turf/open/floor/iron/smooth_large, +/area/station/maintenance/floor2/starboard) "gxb" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/multilayer/multiz, @@ -24188,16 +24123,6 @@ "gxc" = ( /turf/open/floor/carpet/orange, /area/station/service/chapel/funeral) -"gxd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/footprints{ - dir = 8 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/service/abandoned_gambling_den) "gxf" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/trash/cigbutt, @@ -24267,16 +24192,6 @@ /obj/item/storage/box/mousetraps, /turf/open/floor/pod/light, /area/station/maintenance/floor1/port/fore) -"gyc" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/blue/half{ - dir = 4 - }, -/obj/structure/window/reinforced/spawner/directional/south, -/turf/open/floor/iron/textured_edge{ - dir = 4 - }, -/area/station/medical/chemistry) "gyd" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/trimline/brown/filled/line{ @@ -24304,6 +24219,18 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/engineering/gravity_generator) +"gyE" = ( +/obj/item/trash/semki/healthy, +/obj/item/trash/spacers_sidekick{ + pixel_x = -2 + }, +/obj/item/trash/syndi_cakes, +/obj/effect/decal/cleanable/ants, +/obj/effect/decal/cleanable/garbage, +/obj/effect/decal/cleanable/food/flour, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor1/port/aft) "gyG" = ( /obj/effect/spawner/structure/window/hollow/directional{ dir = 8 @@ -24325,13 +24252,6 @@ /obj/machinery/light/dim/directional/west, /turf/open/floor/catwalk_floor, /area/station/maintenance/floor1/port/aft) -"gyV" = ( -/obj/machinery/atmospherics/components/unary/passive_vent{ - name = "killroom vent" - }, -/obj/structure/window/reinforced/plasma/spawner/directional/south, -/turf/open/floor/engine/telecomms, -/area/station/science/xenobiology) "gyX" = ( /obj/structure/chair/sofa/left/brown{ dir = 1 @@ -24355,6 +24275,13 @@ dir = 1 }, /area/station/hallway/floor3/fore) +"gzi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/pod/light, +/area/station/maintenance/floor3/port/aft) "gzt" = ( /obj/effect/turf_decal/siding/wideplating_new/dark, /obj/machinery/light/small/directional/north, @@ -24455,15 +24382,27 @@ }, /turf/open/floor/pod/dark, /area/station/maintenance/floor3/starboard/fore) +"gAz" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/white, +/area/station/maintenance/floor3/starboard/aft) +"gAB" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/east, +/turf/open/floor/grass, +/area/station/science/xenobiology) "gAC" = ( /obj/structure/sign/poster/official/random/directional/west, /turf/open/floor/wood/tile, /area/station/service/library) -"gAP" = ( -/obj/item/reagent_containers/spray/syndicate, +"gAG" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/station/service/abandoned_gambling_den) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/security/range) "gAT" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -24504,11 +24443,6 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/service) -"gBs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/mop, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard/fore) "gBG" = ( /obj/effect/spawner/structure/window/reinforced/plasma, /turf/open/floor/plating, @@ -24581,6 +24515,11 @@ }, /turf/open/floor/catwalk_floor, /area/station/maintenance/floor1/starboard/fore) +"gCO" = ( +/obj/structure/window/reinforced/tinted/frosted/spawner/directional/east, +/obj/structure/window/reinforced/tinted/frosted/spawner/directional/north, +/turf/open/openspace, +/area/station/maintenance/floor3/port) "gCU" = ( /obj/machinery/light/blacklight/directional/west, /obj/item/stack/arcadeticket, @@ -24664,6 +24603,11 @@ /obj/effect/landmark/start/warden, /turf/open/floor/iron/dark, /area/station/security/warden) +"gEi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/toy/nuke, +/turf/open/floor/pod/light, +/area/station/security/execution/education) "gEk" = ( /obj/machinery/suit_storage_unit/security, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -24679,13 +24623,18 @@ /obj/item/stack/rods/fifty, /turf/open/floor/iron, /area/station/engineering/atmos) -"gEB" = ( -/obj/structure/railing{ - dir = 8 - }, +"gEA" = ( +/obj/machinery/light/broken/directional/north, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard/fore) +/turf/open/floor/iron, +/area/station/maintenance/floor2/starboard/fore) +"gEH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/white/line{ + dir = 5 + }, +/turf/open/floor/pod, +/area/station/maintenance/floor4/starboard/aft) "gEL" = ( /obj/effect/spawner/structure/window/hollow/directional{ dir = 1 @@ -24708,14 +24657,6 @@ /obj/structure/window/reinforced/spawner/directional/west, /turf/open/floor/iron/white, /area/station/science/cytology) -"gFf" = ( -/obj/effect/turf_decal/tile/red/anticorner{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted/frosted/spawner/directional/east, -/obj/structure/window/reinforced/tinted/frosted/spawner/directional/north, -/turf/open/floor/stone, -/area/station/maintenance/floor1/port) "gFh" = ( /obj/effect/spawner/random/engineering/tank, /obj/effect/turf_decal/trimline/dark_blue/end{ @@ -24736,14 +24677,6 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron/dark, /area/station/hallway/floor2/fore) -"gFz" = ( -/obj/machinery/atmospherics/components/unary/portables_connector{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/floor2/port) "gFE" = ( /obj/structure/closet/secure_closet/chief_medical, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -24751,11 +24684,6 @@ }, /turf/open/floor/wood/parquet, /area/station/command/heads_quarters/cmo) -"gFO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/dark, -/area/station/maintenance/floor2/starboard) "gFQ" = ( /obj/effect/turf_decal/delivery, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -24777,26 +24705,16 @@ /obj/structure/extinguisher_cabinet/directional/west, /turf/open/floor/iron/dark, /area/station/cargo/drone_bay) -"gGu" = ( -/obj/structure/table/wood, -/obj/structure/window/spawner/directional/south, -/turf/open/floor/carpet/green, -/area/station/command/heads_quarters/rd) -"gGx" = ( -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/turf_decal/siding/wood{ - dir = 1 +"gGg" = ( +/obj/effect/spawner/random/trash/graffiti{ + pixel_y = -32 }, -/obj/machinery/door/airlock/hatch{ - name = "Maintenance Access" +/obj/structure/disposalpipe/broken{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/station/maintenance/floor3/port/aft) +/turf/open/floor/plating, +/area/station/medical/abandoned) "gGA" = ( /obj/effect/turf_decal/trimline/purple/filled/corner{ dir = 4 @@ -24807,12 +24725,6 @@ }, /turf/open/floor/iron, /area/station/science/auxlab) -"gGB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/lead_pipe, -/obj/structure/closet/cardboard/metal, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard/fore) "gGH" = ( /obj/machinery/status_display/ai/directional/north, /turf/open/floor/iron/dark/side{ @@ -24824,14 +24736,6 @@ /obj/structure/cable, /turf/open/floor/circuit, /area/station/ai_monitored/turret_protected/ai) -"gGP" = ( -/obj/effect/turf_decal/tile/bar/opposingcorners{ - dir = 1 - }, -/obj/machinery/computer/security/telescreen/entertainment/directional/north, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/checker, -/area/station/cargo/miningdock) "gGZ" = ( /obj/effect/turf_decal/trimline/green/line{ dir = 4 @@ -24909,11 +24813,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white, /area/station/medical/virology) -"gHV" = ( -/obj/effect/decal/cleanable/oil, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/engineering/lobby) "gHY" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -24990,6 +24889,11 @@ }, /turf/open/floor/engine, /area/station/engineering/atmos/hfr_room) +"gIx" = ( +/obj/structure/closet/emcloset/anchored, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard/fore) "gIz" = ( /obj/effect/spawner/structure/window/reinforced/plasma, /turf/open/floor/plating, @@ -25046,13 +24950,6 @@ /obj/effect/spawner/random/engineering/tracking_beacon, /turf/open/floor/iron/dark, /area/station/security/courtroom) -"gJy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/floor2/port/aft) "gJz" = ( /obj/effect/turf_decal/tile/green/opposingcorners, /obj/machinery/modular_computer/preset/civilian{ @@ -25144,11 +25041,6 @@ /obj/effect/spawner/random/structure/crate_abandoned, /turf/open/floor/pod/dark, /area/station/maintenance/floor1/port/aft) -"gKQ" = ( -/obj/structure/window/plasma/spawner/directional/south, -/obj/machinery/rnd/server/master, -/turf/open/floor/circuit/telecomms, -/area/station/science/server) "gKR" = ( /obj/effect/turf_decal/trimline/green/filled/corner{ dir = 4 @@ -25235,13 +25127,6 @@ dir = 10 }, /area/station/hallway/floor2/aft) -"gMd" = ( -/obj/effect/turf_decal/trimline/blue/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server/upper) "gMe" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -25284,6 +25169,16 @@ }, /turf/open/floor/iron/white, /area/station/science/xenobiology/hallway) +"gMw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/green/half{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/hallway/secondary/exit/escape_pod) "gMz" = ( /obj/machinery/duct, /turf/open/floor/iron/kitchen, @@ -25362,11 +25257,6 @@ "gNN" = ( /turf/open/floor/pod/dark, /area/station/maintenance/floor1/starboard) -"gNS" = ( -/obj/structure/flora/rock, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/fakebasalt, -/area/station/maintenance/floor3/port) "gNT" = ( /obj/effect/turf_decal/trimline/blue/filled/corner{ dir = 1 @@ -25383,16 +25273,15 @@ /obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/pod/light, /area/station/maintenance/floor1/starboard/fore) -"gOh" = ( -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/blue/half{ - dir = 8 - }, -/obj/structure/window/reinforced/spawner/directional/south, -/turf/open/floor/iron/textured_edge{ - dir = 8 +"gOk" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 }, -/area/station/medical/chemistry) +/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) "gOp" = ( /obj/effect/turf_decal/stripes, /obj/machinery/atmospherics/pipe/layer_manifold/supply/visible, @@ -25418,6 +25307,18 @@ }, /turf/open/floor/iron/white, /area/station/science/ordnance/testlab) +"gOL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 10 + }, +/obj/structure/rack, +/obj/effect/spawner/random/maintenance, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/pod/light, +/area/station/maintenance/floor2/port/aft) "gOO" = ( /obj/structure/table, /obj/machinery/newscaster/directional/east, @@ -25487,6 +25388,11 @@ /obj/structure/cable, /turf/open/floor/wood/tile, /area/station/service/library) +"gPQ" = ( +/obj/structure/table/reinforced, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor1/port/aft) "gPR" = ( /obj/machinery/door/airlock/hatch{ name = "Maintenance Bulkhead" @@ -25500,6 +25406,20 @@ }, /turf/open/floor/pod/dark, /area/station/maintenance/floor3/port/fore) +"gPX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/floor3/port) +"gPY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/smooth_half, +/area/station/cargo/warehouse) "gQa" = ( /obj/machinery/light/directional/south, /obj/structure/disposalpipe/segment{ @@ -25521,6 +25441,11 @@ /obj/effect/spawner/random/engineering/atmospherics_portable, /turf/open/floor/pod/dark, /area/station/maintenance/floor2/starboard) +"gQC" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor1/starboard/fore) "gQI" = ( /obj/effect/turf_decal/siding/white{ dir = 8 @@ -25548,6 +25473,11 @@ initial_gas_mix = "TEMP=2.7" }, /area/station/science/ordnance/bomb) +"gRd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/port/fore) "gRe" = ( /obj/effect/turf_decal/siding/wood, /turf/open/floor/iron/dark/side, @@ -25593,24 +25523,16 @@ /obj/machinery/duct, /turf/open/floor/iron/dark, /area/station/security/brig) -"gRA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/weldingtool/mini, -/obj/effect/spawner/random/maintenance/two, -/turf/open/floor/pod/dark, -/area/station/maintenance/floor4/starboard) +"gRB" = ( +/obj/structure/window/reinforced/tinted/frosted/spawner/directional/north, +/obj/structure/window/reinforced/tinted/frosted/spawner/directional/west, +/turf/open/openspace, +/area/station/maintenance/floor3/port) "gRH" = ( /obj/structure/extinguisher_cabinet/directional/west, /obj/machinery/camera/directional/west, /turf/open/floor/carpet, /area/station/command/heads_quarters/captain) -"gRI" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet/green, -/area/station/service/abandoned_gambling_den) "gRJ" = ( /obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ dir = 9 @@ -25651,12 +25573,6 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron/dark, /area/station/command/gateway) -"gSu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/structure/electrified_grille, -/turf/open/floor/plating, -/area/station/maintenance/floor2/port/aft) "gSw" = ( /obj/structure/cable, /obj/effect/turf_decal/stripes/white/line, @@ -25664,15 +25580,32 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark/side, /area/station/engineering/storage/tech) -"gSS" = ( +"gSC" = ( +/obj/machinery/field/generator, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/red/line{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured_large, +/area/station/engineering/lobby) +"gSF" = ( +/obj/item/stack/ducts/fifty, /obj/effect/decal/cleanable/dirt, /turf/open/floor/pod/light, -/area/station/maintenance/floor3/port/aft) +/area/station/maintenance/floor4/starboard/aft) "gTd" = ( /obj/structure/cable, /obj/machinery/camera/autoname/directional/east, /turf/open/floor/iron, /area/station/hallway/floor1/aft) +"gTj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/graffiti, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/port/fore) "gTk" = ( /obj/structure/stairs/south, /turf/open/floor/iron/white, @@ -25693,6 +25626,12 @@ /obj/structure/sign/departments/restroom/directional/east, /turf/open/floor/iron/dark/textured, /area/station/commons/fitness) +"gTx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/suit/hazardvest, +/obj/structure/rack, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/port/fore) "gTA" = ( /obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ dir = 4 @@ -25715,11 +25654,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/catwalk_floor, /area/station/hallway/floor4/aft) -"gTR" = ( -/obj/effect/spawner/random/structure/closet_maintenance, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard/aft) "gTW" = ( /obj/machinery/atmospherics/pipe/smart/simple/dark/visible/layer2{ dir = 5 @@ -25770,11 +25704,6 @@ "gUs" = ( /turf/open/floor/engine/air, /area/station/engineering/atmos) -"gUv" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor1/starboard/fore) "gUD" = ( /obj/effect/turf_decal/siding/white/corner{ dir = 1 @@ -25795,16 +25724,11 @@ /obj/item/pestle, /turf/open/floor/iron/white, /area/station/cargo/miningdock) -"gUS" = ( +"gUU" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/mech_bay_recharge_port{ - dir = 2 - }, -/obj/effect/turf_decal/siding/thinplating_new{ - dir = 4 - }, -/turf/open/floor/iron/textured_large, -/area/station/cargo/warehouse) +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard) "gUX" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -25826,11 +25750,6 @@ "gVw" = ( /turf/open/floor/iron/dark, /area/station/hallway/floor1/fore) -"gVx" = ( -/obj/structure/closet/firecloset, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor3/port/fore) "gVI" = ( /obj/effect/turf_decal/bot, /obj/machinery/firealarm/directional/west, @@ -25851,6 +25770,10 @@ /obj/structure/window/reinforced/spawner/directional/east, /turf/open/floor/grass, /area/station/service/chapel) +"gWa" = ( +/obj/structure/window/reinforced/tinted/frosted/spawner/directional/east, +/turf/open/openspace, +/area/station/maintenance/floor4/port/aft) "gWj" = ( /obj/structure/weightmachine/weightlifter, /obj/effect/turf_decal/bot, @@ -25988,6 +25911,11 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/security/lockers) +"gXX" = ( +/obj/effect/spawner/random/structure/table, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/white, +/area/station/medical/abandoned) "gXY" = ( /turf/closed/wall, /area/station/medical/exam_room) @@ -26000,14 +25928,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/closed/wall/r_wall, /area/station/maintenance/floor1/port/aft) -"gYe" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/floor2/port/aft) "gYh" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 6 @@ -26019,13 +25939,6 @@ /obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron/dark/smooth_large, /area/station/service/bar) -"gYj" = ( -/obj/effect/spawner/random/trash/graffiti{ - pixel_y = 32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/white, -/area/station/medical/abandoned) "gYt" = ( /obj/effect/turf_decal/stripes/white/line{ dir = 4 @@ -26049,6 +25962,16 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/cargo/storage) +"gYB" = ( +/obj/structure/frame/computer{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/window/reinforced/tinted/spawner/directional/west, +/turf/open/floor/wood, +/area/station/commons/vacant_room/office) "gYI" = ( /obj/structure/fluff{ desc = "What, you think the water just magically soaks into the metallic flooring?"; @@ -26083,11 +26006,6 @@ /obj/structure/table, /turf/open/floor/iron/white/side, /area/station/hallway/floor2/fore) -"gZm" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/white, -/area/station/medical/abandoned) "gZn" = ( /obj/structure/table/bronze, /obj/item/storage/fancy/candle_box{ @@ -26134,12 +26052,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/science/research/abandoned) -"hah" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/white/smooth_corner{ - dir = 4 - }, -/area/station/cargo/miningdock) "har" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -26199,16 +26111,10 @@ dir = 1 }, /area/station/hallway/floor3/aft) -"hbe" = ( -/obj/effect/turf_decal/trimline/green/warning{ - dir = 8 - }, -/obj/effect/turf_decal/stripes{ - dir = 8 - }, -/obj/effect/spawner/random/engineering/canister, +"haY" = ( +/obj/effect/turf_decal/stripes, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/dark, +/turf/open/floor/pod/light, /area/station/maintenance/floor2/starboard) "hbg" = ( /obj/machinery/vending/cigarette, @@ -26359,11 +26265,6 @@ /obj/structure/cable, /turf/open/floor/iron/dark/side, /area/station/commons/locker) -"hcR" = ( -/obj/structure/ladder, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor3/starboard/aft) "hcT" = ( /turf/open/openspace, /area/station/maintenance/floor3/port/aft) @@ -26378,14 +26279,6 @@ }, /turf/open/floor/iron/white, /area/station/medical/break_room) -"hdg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/wood, -/area/station/maintenance/floor3/starboard/aft) "hdh" = ( /obj/structure/sign/poster/random/directional/west, /turf/open/floor/carpet/red, @@ -26403,26 +26296,6 @@ /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{ @@ -26519,11 +26392,6 @@ }, /turf/open/floor/pod/dark, /area/station/cargo/miningdock) -"heg" = ( -/obj/machinery/space_heater/improvised_chem_heater, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard) "heh" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -26548,14 +26416,6 @@ }, /turf/open/floor/iron/dark, /area/station/hallway/floor3/fore) -"heP" = ( -/obj/structure/window/spawner/directional/south, -/obj/structure/bed/medical/emergency, -/obj/structure/sign/gym/mirrored/right{ - pixel_y = 32 - }, -/turf/open/floor/iron/dark/textured, -/area/station/commons/fitness) "heS" = ( /obj/structure/bed/double, /obj/item/bedsheet/dorms_double, @@ -26590,12 +26450,6 @@ /obj/machinery/duct, /turf/open/floor/plating, /area/station/maintenance/floor3/starboard) -"hfd" = ( -/obj/structure/bed/medical/emergency, -/obj/machinery/iv_drip, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/white, -/area/station/security/medical) "hfe" = ( /obj/effect/turf_decal/bot, /obj/effect/spawner/random/trash/mess, @@ -26634,6 +26488,19 @@ }, /turf/open/floor/pod/light, /area/station/maintenance/floor3/starboard) +"hfA" = ( +/obj/effect/turf_decal/tile/blue/half{ + dir = 8 + }, +/obj/structure/tank_holder/emergency_oxygen, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/white/smooth_edge{ + dir = 8 + }, +/area/station/medical/abandoned) "hfD" = ( /obj/machinery/atmospherics/components/binary/pump, /turf/open/floor/plating, @@ -26655,15 +26522,6 @@ dir = 1 }, /area/station/hallway/floor2/aft) -"hgB" = ( -/obj/effect/turf_decal/trimline/green/warning, -/obj/effect/turf_decal/stripes, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/dark, -/area/station/maintenance/floor2/starboard) "hgC" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -26705,11 +26563,6 @@ /obj/machinery/door/firedoor, /turf/open/floor/iron/smooth_large, /area/station/maintenance/floor2/starboard/aft) -"hgT" = ( -/obj/structure/window/reinforced/tinted/frosted/spawner/directional/west, -/obj/structure/window/reinforced/tinted/frosted/spawner/directional/north, -/turf/open/openspace, -/area/station/maintenance/floor2/port) "hhf" = ( /obj/structure/cable, /turf/open/floor/catwalk_floor, @@ -26886,6 +26739,16 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/engineering/supermatter/room) +"hjD" = ( +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/blue/half{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/medical/chemistry) "hjE" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/heat_exchanging/simple, @@ -26948,6 +26811,11 @@ "hkq" = ( /turf/closed/wall/r_wall, /area/station/engineering/atmos) +"hkv" = ( +/obj/structure/chair/wood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/green, +/area/station/service/abandoned_gambling_den) "hkw" = ( /turf/open/floor/iron/white/side{ dir = 6 @@ -26987,6 +26855,13 @@ /obj/effect/turf_decal/tile/green/full, /turf/open/floor/iron/dark, /area/station/service/hydroponics) +"hlr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/floor4/starboard/aft) "hlB" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -27116,6 +26991,11 @@ }, /turf/open/floor/iron/dark, /area/station/ai_monitored/turret_protected/aisat) +"hmT" = ( +/obj/effect/turf_decal/trimline/yellow/line, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/half, +/area/station/engineering/lobby) "hmX" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -27124,6 +27004,16 @@ }, /turf/open/floor/iron/kitchen, /area/station/service/kitchen) +"hnf" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/table, +/obj/effect/spawner/random/maintenance, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/cargo/warehouse) "hng" = ( /obj/machinery/door/airlock/hatch{ name = "Maintenance Bulkhead" @@ -27231,6 +27121,15 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron, /area/station/hallway/floor1/fore) +"hoG" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/medical/abandoned) "hoU" = ( /obj/effect/spawner/random/contraband/landmine, /turf/open/floor/pod/dark, @@ -27301,6 +27200,14 @@ dir = 8 }, /area/station/hallway/secondary/exit) +"hpw" = ( +/obj/effect/turf_decal/trimline/green/warning, +/obj/effect/turf_decal/stripes, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/dark, +/area/station/maintenance/floor2/starboard) "hpF" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron, @@ -27351,6 +27258,11 @@ }, /turf/open/floor/iron/dark, /area/station/engineering/atmos/hfr_room) +"hqO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/east, +/turf/open/floor/pod/dark, +/area/station/maintenance/floor4/starboard) "hqR" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -27373,6 +27285,13 @@ /obj/structure/sign/poster/contraband/random/directional/north, /turf/open/floor/pod/light, /area/station/maintenance/floor2/port/aft) +"hru" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/shovel, +/obj/effect/spawner/random/clothing/gloves, +/obj/structure/rack, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard/fore) "hrw" = ( /obj/effect/turf_decal/tile/blue/opposingcorners, /obj/structure/chair/plastic{ @@ -27402,6 +27321,12 @@ /obj/structure/sign/poster/contraband/syndicate_pistol, /turf/closed/wall, /area/station/maintenance/floor3/port/aft) +"hrK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/grille, +/turf/open/floor/plating, +/area/station/medical/abandoned) "hrO" = ( /obj/machinery/light/directional/west, /obj/machinery/computer/atmos_alert{ @@ -27409,6 +27334,12 @@ }, /turf/open/floor/iron, /area/station/engineering/atmos/office) +"hrZ" = ( +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/window/spawner/directional/south, +/obj/structure/window/spawner/directional/north, +/turf/open/floor/grass, +/area/station/hallway/secondary/exit/departure_lounge) "hse" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 @@ -27467,6 +27398,11 @@ /obj/effect/spawner/random/trash/bucket, /turf/open/floor/pod/light, /area/station/maintenance/floor2/port/aft) +"hsS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/oil, +/turf/open/floor/pod/light, +/area/station/maintenance/floor1/port/fore) "hsT" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/spawner/structure/window/hollow/plasma/middle, @@ -27488,20 +27424,15 @@ }, /turf/open/floor/iron, /area/station/maintenance/floor2/starboard/aft) -"htc" = ( -/obj/effect/turf_decal/trimline/green/arrow_cw{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/cargo/miningdock) "hte" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark/smooth_large, /area/station/service/kitchen/abandoned) +"htf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/service/abandoned_gambling_den) "htg" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -27614,18 +27545,18 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/hallway/floor3/fore) -"huR" = ( -/obj/machinery/door/airlock/medical{ - name = "The Blue Door" +"huP" = ( +/obj/item/emergency_bed, +/obj/item/emergency_bed{ + pixel_y = 3 }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 +/obj/item/emergency_bed{ + pixel_y = 6 }, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet/blue, -/area/station/maintenance/floor3/port/aft) +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/structure/table/glass, +/turf/open/floor/iron/white/textured, +/area/station/medical/medbay/central) "huT" = ( /obj/structure/cable, /obj/machinery/status_display/ai/directional/west, @@ -27647,6 +27578,13 @@ /obj/machinery/light/dim/directional/west, /turf/open/floor/catwalk_floor, /area/station/maintenance/floor2/starboard) +"hvk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible/layer2{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/engineering/atmos) "hvB" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/camera/directional/east{ @@ -27860,13 +27798,6 @@ /obj/item/chair, /turf/open/floor/pod/light, /area/station/maintenance/floor1/starboard) -"hyx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/dark, -/area/station/maintenance/floor3/port/aft) "hyD" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -27881,14 +27812,6 @@ dir = 1 }, /area/station/engineering/atmos/hfr_room) -"hyN" = ( -/obj/effect/turf_decal/tile/red/diagonal_edge, -/obj/machinery/firealarm/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark/textured_large, -/area/station/security/checkpoint/escape) "hyR" = ( /obj/machinery/light/directional/west, /obj/effect/turf_decal/tile/dark_red/fourcorners, @@ -27910,14 +27833,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/station/medical/psychology) -"hyW" = ( -/obj/structure/table, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/abandoned) "hyY" = ( /obj/effect/turf_decal/trimline/dark_blue/line{ dir = 4 @@ -27925,18 +27840,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/commons/storage/tools) -"hzx" = ( -/obj/structure/table/wood, -/obj/item/storage/fancy/cigarettes/cigpack_midori{ - pixel_x = -6; - pixel_y = -4 - }, -/obj/item/lighter{ - pixel_y = -6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet/purple, -/area/station/maintenance/floor1/port/aft) "hzz" = ( /obj/structure/sign/poster/contraband/random/directional/south, /turf/open/floor/plating, @@ -28006,12 +27909,6 @@ /obj/effect/mapping_helpers/airlock/access/any/service/theatre, /turf/open/floor/pod/dark, /area/station/maintenance/floor3/starboard/aft) -"hzV" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/textured_edge{ - dir = 8 - }, -/area/station/medical/chemistry) "hAc" = ( /obj/effect/decal/cleanable/blood/tracks, /turf/open/floor/pod/light, @@ -28033,6 +27930,11 @@ /obj/structure/flora/bush/style_random, /turf/open/floor/grass, /area/station/security/courtroom) +"hAt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/floor4/port/fore) "hAv" = ( /obj/effect/turf_decal/bot, /obj/machinery/light/small/directional/east, @@ -28049,6 +27951,11 @@ /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, /turf/open/floor/engine, /area/station/engineering/supermatter/room) +"hAL" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/smooth, +/area/station/cargo/warehouse) "hAP" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/brigdoor/right/directional/south{ @@ -28079,6 +27986,13 @@ /obj/effect/turf_decal/trimline/blue/filled/line, /turf/open/floor/iron/white, /area/station/medical/medbay/lobby) +"hBh" = ( +/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/pod/light, +/area/station/maintenance/floor4/port/fore) "hBp" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -28115,12 +28029,6 @@ dir = 1 }, /area/station/hallway/floor2/aft) -"hBR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/broken/directional/north, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/catwalk_floor/iron_smooth, -/area/station/cargo/warehouse) "hBT" = ( /obj/structure/table, /obj/structure/bedsheetbin, @@ -28164,14 +28072,15 @@ /obj/effect/mapping_helpers/airlock/unres, /turf/open/floor/catwalk_floor, /area/station/maintenance/floor2/starboard/fore) -"hCv" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 +"hCw" = ( +/obj/effect/turf_decal/trimline/green/warning, +/obj/effect/turf_decal/stripes, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 }, -/obj/effect/turf_decal/caution/stand_clear/white, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor2/starboard/aft) +/turf/open/floor/pod/dark, +/area/station/maintenance/floor2/starboard) "hCJ" = ( /obj/structure/railing/corner{ dir = 1 @@ -28229,6 +28138,11 @@ /obj/machinery/recharge_station, /turf/open/floor/circuit, /area/station/ai_monitored/turret_protected/aisat/service) +"hDD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/pod, +/area/station/maintenance/floor4/starboard/aft) "hDE" = ( /obj/structure/cable, /obj/effect/spawner/structure/window/reinforced, @@ -28239,11 +28153,6 @@ }, /turf/open/floor/plating, /area/station/medical/pharmacy) -"hDK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/pod, -/area/station/maintenance/floor4/port/fore) "hDZ" = ( /obj/structure/table/wood, /obj/machinery/computer/security/telescreen/entertainment/directional/east, @@ -28256,10 +28165,6 @@ }, /turf/open/floor/pod/dark, /area/station/service/kitchen/abandoned) -"hEo" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor3/port/fore) "hEu" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -28290,10 +28195,11 @@ /obj/effect/turf_decal/tile/blue/full, /turf/open/floor/iron/textured_large, /area/station/ai_monitored/command/nuke_storage) -"hFa" = ( +"hEX" = ( +/obj/machinery/door/firedoor, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/side, -/area/station/hallway/secondary/exit) +/turf/open/floor/iron/white, +/area/station/medical/abandoned) "hFc" = ( /obj/structure/table/wood, /obj/item/chisel, @@ -28341,14 +28247,6 @@ }, /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, @@ -28375,6 +28273,11 @@ name = "lab floor" }, /area/station/science/genetics) +"hFM" = ( +/obj/machinery/space_heater, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor1/port/aft) "hFS" = ( /obj/structure/table/reinforced, /obj/item/experi_scanner, @@ -28392,6 +28295,18 @@ /obj/effect/spawner/random/food_or_drink/donkpockets, /turf/open/floor/pod/light, /area/station/maintenance/floor1/port/fore) +"hGi" = ( +/obj/effect/turf_decal/tile/green/half{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_half{ + dir = 1 + }, +/area/station/hallway/secondary/exit/escape_pod) "hGp" = ( /obj/structure/bookcase/random/reference, /turf/open/floor/wood/tile, @@ -28400,11 +28315,6 @@ /obj/effect/turf_decal/trimline/red/filled/line, /turf/open/floor/iron/dark, /area/station/security/checkpoint/second) -"hGy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/generic_maintenance_landmark, -/turf/open/floor/pod, -/area/station/maintenance/floor4/port/fore) "hGA" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk{ @@ -28414,16 +28324,6 @@ dir = 1 }, /area/station/hallway/floor2/aft) -"hGB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/blobstart, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard) -"hGL" = ( -/obj/machinery/light/small/directional/north, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet/blue, -/area/station/maintenance/floor3/port/aft) "hGP" = ( /obj/structure/chair/comfy/black, /obj/structure/sign/departments/botany/directional/east, @@ -28484,11 +28384,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/station/science/ordnance/testlab) -"hHn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/broken/directional/east, -/turf/open/floor/plating, -/area/station/service/abandoned_gambling_den) "hHq" = ( /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/tile/red/half{ @@ -28505,6 +28400,10 @@ dir = 1 }, /area/station/hallway/floor3/aft) +"hHt" = ( +/obj/structure/window/reinforced/tinted/frosted/spawner/directional/north, +/turf/open/openspace, +/area/station/maintenance/floor2/port) "hHB" = ( /obj/effect/turf_decal/bot, /obj/machinery/portable_atmospherics/scrubber, @@ -28545,12 +28444,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/pod/light, /area/station/maintenance/floor1/starboard/fore) -"hIp" = ( -/obj/item/skillchip/light_remover, -/obj/structure/closet/crate, +"hIn" = ( +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 1 + }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard/fore) +/obj/effect/turf_decal/tile/blue/anticorner/contrasted, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server/upper) "hII" = ( /obj/structure/chair/sofa/bench{ dir = 1 @@ -28631,20 +28532,10 @@ /obj/structure/chair/sofa/middle/brown, /turf/open/floor/carpet/green, /area/station/service/bar/atrium) -"hJD" = ( -/obj/effect/spawner/random/maintenance, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/floor2/starboard/fore) "hJF" = ( /obj/effect/turf_decal/tile/blue/opposingcorners, /turf/open/floor/iron/dark, /area/station/hallway/floor4/fore) -"hJG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard/aft) "hJJ" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 @@ -28670,12 +28561,6 @@ /obj/machinery/light/dim/directional/east, /turf/open/floor/catwalk_floor, /area/station/maintenance/floor3/starboard/aft) -"hJU" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/dark, -/area/station/maintenance/floor2/starboard) "hJV" = ( /obj/structure/stairs/north, /turf/open/floor/iron, @@ -28687,6 +28572,11 @@ /obj/structure/closet/emcloset, /turf/open/floor/pod/dark, /area/station/maintenance/floor2/port/aft) +"hKf" = ( +/obj/machinery/light_switch/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/station/maintenance/floor3/starboard/aft) "hKg" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -28725,12 +28615,6 @@ /obj/item/reagent_containers/syringe/contraband/space_drugs, /turf/open/floor/carpet/neon/simple/pink/nodots, /area/station/maintenance/floor2/port/fore) -"hKx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plating, -/area/station/maintenance/floor4/starboard/aft) "hKK" = ( /obj/effect/turf_decal/tile/yellow/opposingcorners, /obj/structure/cable, @@ -28763,21 +28647,6 @@ }, /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"; @@ -28918,6 +28787,12 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/maintenance/disposal/incinerator) +"hML" = ( +/obj/item/wrench, +/obj/structure/rack, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard/aft) "hMU" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/sign/poster/contraband/random/directional/west, @@ -28932,6 +28807,14 @@ /obj/machinery/light/small/directional/south, /turf/open/floor/iron/white, /area/station/science/xenobiology) +"hMZ" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood, +/obj/item/paper_bin, +/obj/item/pen, +/obj/structure/window/reinforced/tinted/spawner/directional/east, +/turf/open/floor/carpet, +/area/station/commons/vacant_room/office) "hNe" = ( /obj/structure/table_frame, /turf/open/floor/plating, @@ -29082,6 +28965,11 @@ }, /turf/open/floor/iron/dark/side, /area/station/hallway/floor4/fore) +"hPs" = ( +/obj/machinery/light/dim/directional/east, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor1/port/aft) "hPA" = ( /obj/structure/ladder, /turf/open/floor/catwalk_floor, @@ -29166,6 +29054,11 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/ai_monitored/command/storage/eva) +"hQR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/engine, +/area/station/maintenance/floor4/starboard/aft) "hQT" = ( /obj/structure/railing{ dir = 4 @@ -29178,12 +29071,6 @@ /obj/effect/spawner/random/entertainment/money_small, /turf/open/floor/wood, /area/station/hallway/floor3/fore) -"hRc" = ( -/obj/structure/table/glass, -/obj/item/stack/sheet/mineral/plasma/five, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/circuit/telecomms, -/area/station/tcommsat/server/upper) "hRe" = ( /obj/machinery/computer/atmos_control/nocontrol/master{ dir = 4 @@ -29211,6 +29098,10 @@ /obj/effect/turf_decal/tile/green/full, /turf/open/floor/iron, /area/station/service/hydroponics) +"hRs" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/dark, +/area/station/maintenance/floor2/starboard) "hRA" = ( /obj/machinery/telecomms/message_server/preset, /turf/open/floor/circuit/telecomms, @@ -29230,6 +29121,12 @@ dir = 4 }, /area/station/security/prison) +"hRJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/grille, +/turf/open/floor/plating, +/area/station/maintenance/floor1/port/aft) "hRO" = ( /obj/structure/cable, /obj/structure/disposalpipe/junction{ @@ -29263,17 +29160,19 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark/smooth_large, /area/station/engineering/storage/tech) -"hSh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/port/fore) "hSo" = ( /obj/effect/turf_decal/siding/wood/corner{ dir = 1 }, /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 @@ -29345,11 +29244,6 @@ /obj/structure/disposalpipe/trunk/multiz/down, /turf/open/floor/plating, /area/station/maintenance/floor2/port/fore) -"hTr" = ( -/obj/structure/closet/firecloset/full, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard/fore) "hTs" = ( /obj/effect/landmark/start/depsec/medical, /turf/open/floor/iron/white, @@ -29363,6 +29257,14 @@ }, /turf/open/floor/iron/dark/side, /area/station/hallway/floor3/aft) +"hTy" = ( +/obj/effect/turf_decal/trimline/blue/end{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/shower/directional/east, +/turf/open/floor/iron/white, +/area/station/medical/abandoned) "hTz" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -29392,12 +29294,6 @@ }, /turf/open/floor/iron, /area/station/engineering/lobby) -"hTU" = ( -/obj/effect/spawner/random/structure/crate_abandoned, -/obj/machinery/light/dim/directional/north, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor1/port/aft) "hTW" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -29441,6 +29337,14 @@ /obj/machinery/teleport/hub, /turf/open/floor/circuit, /area/station/ai_monitored/turret_protected/aisat) +"hUw" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/floor4/starboard) "hUx" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -29449,6 +29353,12 @@ }, /turf/open/floor/iron/white, /area/station/medical/medbay/lobby) +"hUB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/airalarm/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/solars/starboard/aft) "hUE" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 @@ -29513,13 +29423,6 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/disposal) -"hVk" = ( -/obj/machinery/light/dim/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/effect/spawner/random/maintenance/three, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/port/fore) "hVq" = ( /obj/machinery/washing_machine, /obj/machinery/camera/autoname/directional/west, @@ -29550,6 +29453,11 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/pod/dark, /area/station/maintenance/floor3/starboard) +"hVO" = ( +/obj/effect/turf_decal/trimline/blue/line, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server/upper) "hWh" = ( /obj/effect/turf_decal/box/corners{ dir = 8 @@ -29665,11 +29573,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/security/interrogation) -"hXu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/marker_beacon/burgundy, -/turf/open/floor/pod/light, -/area/station/maintenance/floor2/port/aft) "hXI" = ( /obj/structure/chair/wood{ dir = 1 @@ -29785,6 +29688,10 @@ /obj/effect/spawner/random/structure/closet_maintenance, /turf/open/floor/pod/dark, /area/station/maintenance/floor2/starboard) +"iao" = ( +/obj/structure/window/reinforced/tinted/frosted/spawner/directional/north, +/turf/open/openspace, +/area/station/maintenance/floor3/port) "iaq" = ( /obj/machinery/light/cold/no_nightlight/directional/north, /obj/effect/turf_decal/trimline/purple/filled/line, @@ -29830,6 +29737,17 @@ /obj/structure/chair/sofa/corner/brown, /turf/open/floor/carpet/green, /area/station/service/bar/atrium) +"iaX" = ( +/obj/machinery/door/airlock/hatch{ + name = "Maintenance Hatch" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/turf/open/floor/pod/dark, +/area/station/maintenance/floor3/port) "ibi" = ( /obj/effect/turf_decal/loading_area/white{ color = "#52B4E9" @@ -30014,6 +29932,14 @@ /obj/item/hand_tele, /turf/open/floor/iron/dark, /area/station/command/teleporter) +"idL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/space_heater/improvised_chem_heater, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/medical/chemistry) "idM" = ( /obj/structure/table, /obj/machinery/status_display/evac/directional/north, @@ -30100,16 +30026,6 @@ /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{ @@ -30196,6 +30112,14 @@ "igE" = ( /turf/closed/wall, /area/station/science/robotics/mechbay) +"igL" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/item/stack/cable_coil/cut, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/maintenance/floor2/port/aft) "igQ" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -30253,18 +30177,6 @@ dir = 4 }, /area/station/medical/pharmacy) -"ihn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/item/skillchip/wine_taster, -/turf/open/floor/wood, -/area/station/maintenance/floor3/starboard/aft) -"iho" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/random/directional/south, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/port) "ihp" = ( /obj/effect/turf_decal/tile/yellow/opposingcorners, /obj/structure/cable, @@ -30285,6 +30197,12 @@ /obj/structure/closet/crate/engineering, /turf/open/floor/plating, /area/station/engineering/lobby) +"ihv" = ( +/obj/effect/spawner/random/structure/crate_abandoned, +/obj/machinery/light/dim/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor1/port/aft) "ihB" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -30324,6 +30242,11 @@ }, /turf/open/floor/plating, /area/station/maintenance/floor2/starboard/fore) +"ihY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/emcloset/anchored, +/turf/open/floor/pod/dark, +/area/station/maintenance/floor3/port/aft) "iia" = ( /obj/effect/turf_decal/trimline/red/filled/line, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -30344,6 +30267,16 @@ }, /turf/open/floor/grass, /area/station/science/genetics) +"iif" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/structure/window/reinforced/tinted/spawner/directional/north, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 5 + }, +/turf/open/floor/iron, +/area/station/hallway/floor2/fore) "iim" = ( /obj/machinery/shower/directional/east, /turf/open/floor/iron/showroomfloor, @@ -30371,6 +30304,11 @@ /obj/machinery/suit_storage_unit/captain, /turf/open/floor/wood/tile, /area/station/command/heads_quarters/captain/private) +"iiL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard) "iiR" = ( /obj/effect/turf_decal/trimline/yellow/warning, /obj/structure/rack, @@ -30385,15 +30323,11 @@ }, /turf/open/floor/pod/light, /area/station/maintenance/floor4/port/fore) -"ijs" = ( -/obj/structure/closet/emcloset, +"ijr" = ( +/obj/structure/closet/crate/trashcart/filled, /obj/effect/decal/cleanable/dirt, /turf/open/floor/pod/light, -/area/station/maintenance/floor1/port/fore) -"ijL" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/textured_large, -/area/station/cargo/storage) +/area/station/maintenance/floor4/starboard/fore) "ijQ" = ( /obj/machinery/computer/station_alert, /turf/open/floor/iron/dark, @@ -30475,15 +30409,6 @@ /obj/structure/sign/poster/random/directional/east, /turf/open/floor/iron, /area/station/commons/toilet) -"ikF" = ( -/obj/effect/turf_decal/trimline/blue/corner{ - dir = 1 - }, -/obj/item/stack/cable_coil/five, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server/upper) "ikM" = ( /obj/effect/turf_decal/tile/blue/half/contrasted, /obj/machinery/light/directional/south, @@ -30561,6 +30486,11 @@ /obj/effect/mapping_helpers/airlock/access/any/service/general, /turf/open/floor/iron/dark, /area/station/maintenance/floor2/port/fore) +"ima" = ( +/obj/effect/spawner/random/engineering/tank, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor2/port/aft) "img" = ( /obj/structure/cable, /obj/structure/girder, @@ -30605,6 +30535,15 @@ }, /turf/open/floor/wood, /area/station/science/research/abandoned) +"imB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/garbage{ + spawn_loot_count = 3; + spawn_scatter_radius = 1 + }, +/obj/structure/spider/stickyweb, +/turf/open/floor/pod/dark, +/area/station/maintenance/floor4/starboard) "imI" = ( /obj/effect/turf_decal/trimline/blue/warning{ dir = 1 @@ -30641,6 +30580,13 @@ /obj/structure/mop_bucket/janitorialcart, /turf/open/floor/iron, /area/station/service/janitor) +"inC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/white, +/area/station/medical/abandoned) "inE" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -30661,11 +30607,6 @@ }, /turf/open/floor/iron/cafeteria, /area/station/commons/locker) -"inK" = ( -/obj/structure/ladder, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server/upper) "inM" = ( /obj/structure/sign/poster/official/random/directional/west, /obj/machinery/camera/autoname/directional/west, @@ -30718,44 +30659,10 @@ /obj/machinery/computer/records/medical/laptop, /turf/open/floor/carpet, /area/station/security/detectives_office) -"ioD" = ( -/obj/effect/turf_decal/stripes, -/obj/structure/rack, -/obj/effect/spawner/random/maintenance, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/dark, -/area/station/maintenance/floor2/starboard) "ioL" = ( /obj/effect/decal/cleanable/ash, /turf/open/floor/plating/foam, /area/station/maintenance/floor1/port/aft) -"ioM" = ( -/obj/effect/spawner/random/maintenance/two, -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard/fore) -"ioP" = ( -/obj/machinery/door/firedoor, -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/catwalk_floor/iron_dark, -/area/station/hallway/secondary/exit/escape_pod) -"ioQ" = ( -/obj/machinery/airalarm/directional/east, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/solars/port/aft) "ioR" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -30764,14 +30671,6 @@ /obj/structure/cable, /turf/open/floor/wood, /area/station/security/detectives_office) -"ioZ" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/maintenance/floor2/starboard/aft) "ipa" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -30780,16 +30679,6 @@ "ipn" = ( /turf/open/floor/carpet/blue, /area/station/command/heads_quarters/hop) -"ipu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes, -/turf/open/floor/iron, -/area/station/maintenance/floor2/starboard/aft) -"ipv" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/security/prison) "ipA" = ( /obj/effect/turf_decal/trimline/blue/filled/corner{ dir = 4 @@ -30880,11 +30769,6 @@ }, /turf/open/floor/iron/dark, /area/station/command/heads_quarters/hop) -"iqD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/portable_atmospherics/scrubber, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard/fore) "iqR" = ( /obj/effect/turf_decal/tile/red{ dir = 1 @@ -30897,12 +30781,6 @@ dir = 1 }, /area/station/hallway/floor1/aft) -"irh" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/effect/decal/cleanable/blood/tracks, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/white, -/area/station/maintenance/floor3/starboard/aft) "irk" = ( /obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ dir = 1 @@ -31030,14 +30908,13 @@ }, /turf/open/floor/pod/dark, /area/station/maintenance/floor3/starboard) -"isQ" = ( -/obj/effect/turf_decal/arrows/white{ - dir = 1 +"isP" = ( +/obj/effect/turf_decal/stripes{ + dir = 10 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, -/area/station/maintenance/floor2/port/aft) +/area/station/maintenance/floor2/starboard/fore) "isU" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -31093,11 +30970,14 @@ }, /turf/open/floor/engine/hull/reinforced, /area/space/nearstation) -"iua" = ( -/obj/structure/window/reinforced/tinted/spawner/directional/west, -/obj/structure/filingcabinet, -/turf/open/floor/wood, -/area/station/commons/vacant_room/office) +"iuh" = ( +/obj/effect/turf_decal/trimline/brown/warning{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/firecloset/full, +/turf/open/floor/pod/dark, +/area/station/maintenance/floor3/port/aft) "iuk" = ( /obj/effect/turf_decal/trimline/purple/line, /obj/effect/turf_decal/trimline/purple/filled/line{ @@ -31125,6 +31005,17 @@ /obj/effect/spawner/structure/window/reinforced/tinted, /turf/open/floor/plating, /area/station/maintenance/floor2/starboard/aft) +"iuv" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/arrows{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/trunk/multiz, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/drone_bay) "iuA" = ( /obj/structure/table, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -31163,6 +31054,14 @@ /obj/effect/spawner/random/medical/two_percent_xeno_egg_spawner, /turf/open/floor/engine, /area/station/science/cytology) +"ivd" = ( +/obj/machinery/camera/autoname/directional/north, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 1 + }, +/obj/machinery/atm/directional/north, +/turf/open/floor/iron/dark, +/area/station/hallway/floor2/fore) "ivf" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -31243,15 +31142,6 @@ /obj/machinery/light/dim/directional/south, /turf/open/floor/pod/dark, /area/station/maintenance/floor3/port/fore) -"ivV" = ( -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/obj/machinery/light_switch/directional/east, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera/autoname/directional/east, -/turf/open/floor/iron/dark/smooth_large, -/area/station/service/library/printer) "ivY" = ( /obj/structure/chair/office/light, /obj/effect/turf_decal/tile/purple/opposingcorners, @@ -31290,6 +31180,11 @@ /obj/machinery/duct, /turf/open/floor/catwalk_floor, /area/station/maintenance/floor3/starboard/fore) +"iwO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/broken/directional/south, +/turf/open/floor/plating, +/area/station/medical/abandoned) "iwP" = ( /obj/effect/turf_decal/trimline/purple/line, /obj/effect/turf_decal/trimline/purple/filled/corner{ @@ -31301,17 +31196,13 @@ /obj/machinery/camera/autoname/directional/east, /turf/open/floor/wood, /area/station/service/kitchen/diner) -"iwZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/green/half{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/vending/wallmed/directional/north, -/turf/open/floor/iron/dark/side{ - dir = 1 +"ixa" = ( +/obj/effect/turf_decal/trimline/purple/warning{ + dir = 8 }, -/area/station/hallway/secondary/exit/escape_pod) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor2/starboard) "ixc" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -31332,6 +31223,16 @@ }, /turf/open/floor/pod/dark, /area/station/maintenance/floor3/starboard/fore) +"ixj" = ( +/obj/machinery/power/solar_control{ + dir = 1; + id = "starboardsolar"; + name = "Starboard Quarter Solar Control" + }, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/solars/starboard/aft) "ixq" = ( /obj/effect/spawner/random/contraband/landmine, /turf/open/floor/iron, @@ -31344,12 +31245,6 @@ /obj/machinery/light/cold/no_nightlight/directional/north, /turf/open/floor/iron, /area/station/hallway/floor2/aft) -"ixt" = ( -/obj/structure/table, -/obj/item/clothing/head/soft/grey, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor1/starboard/fore) "ixD" = ( /turf/open/floor/plating, /area/station/maintenance/floor1/port/aft) @@ -31363,6 +31258,13 @@ }, /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{ @@ -31414,6 +31316,10 @@ /obj/structure/table/reinforced, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/floor1/fore) +"iyO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/port/fore) "iyP" = ( /obj/structure/rack, /obj/item/storage/bag/construction, @@ -31520,12 +31426,6 @@ /obj/machinery/holopad, /turf/open/floor/wood, /area/station/commons/dorms/apartment1) -"izI" = ( -/obj/structure/rack, -/obj/item/trash/syndi_cakes, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor1/port/aft) "izN" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -31569,6 +31469,14 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/dark, /area/station/command/heads_quarters/hos) +"iAE" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/structure/sign/poster/contraband/red_rum/directional/east, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron/showroomfloor, +/area/station/commons/fitness) "iAH" = ( /obj/machinery/power/shuttle_engine/heater{ icon_state = "router" @@ -31609,6 +31517,13 @@ }, /turf/open/floor/plastic, /area/station/security/prison/shower) +"iBm" = ( +/obj/structure/table/wood/poker, +/obj/effect/spawner/random/entertainment/gambling, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/broken/directional/west, +/turf/open/floor/carpet/green, +/area/station/service/abandoned_gambling_den) "iBo" = ( /obj/structure/table/reinforced/plastitaniumglass, /obj/item/folder/white, @@ -31650,6 +31565,12 @@ /obj/structure/sink/directional/south, /turf/open/floor/iron, /area/station/service/hydroponics) +"iBH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/power/port_gen/pacman, +/turf/open/floor/circuit/telecomms, +/area/station/tcommsat/server/upper) "iBI" = ( /obj/effect/turf_decal/siding/thinplating_new/dark/corner, /turf/open/floor/engine/hull/reinforced, @@ -31684,16 +31605,15 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/engineering/supermatter) -"iCn" = ( -/obj/effect/turf_decal/siding/thinplating_new{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, +"iCo" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/smooth_half, -/area/station/cargo/warehouse) +/obj/structure/cable, +/obj/machinery/light/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/pod/light, +/area/station/maintenance/solars/port/aft) "iCD" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/item/toy/beach_ball, @@ -31734,10 +31654,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/catwalk_floor, /area/station/maintenance/floor4/starboard/aft) -"iDh" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/dark, -/area/station/maintenance/floor2/starboard) "iDk" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -31747,14 +31663,6 @@ }, /turf/open/floor/wood/parquet, /area/station/medical/psychology) -"iDm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/light_switch/directional/north, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/solars/port/aft) "iDw" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -31768,11 +31676,6 @@ /obj/structure/cable/multilayer/multiz, /turf/open/floor/plating, /area/station/maintenance/floor1/port/fore) -"iEa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/mess, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard) "iEg" = ( /obj/structure/disposalpipe/segment{ dir = 5 @@ -31803,11 +31706,6 @@ /obj/structure/sign/departments/engineering/directional/south, /turf/open/floor/iron/dark, /area/station/hallway/floor1/fore) -"iES" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/port/fore) "iFn" = ( /obj/machinery/computer/security/telescreen/entertainment/directional/north, /obj/effect/decal/cleanable/dirt, @@ -31910,6 +31808,19 @@ dir = 8 }, /area/station/security/office) +"iGC" = ( +/obj/effect/turf_decal/trimline/green/line{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/hallway/floor3/fore) +"iGE" = ( +/obj/effect/decal/cleanable/glass, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard/fore) "iGF" = ( /obj/effect/turf_decal/tile/green/full, /obj/machinery/growing/tray, @@ -32003,17 +31914,6 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/command/gateway) -"iHZ" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/table, -/obj/item/stack/cable_coil, -/obj/item/screwdriver, -/obj/effect/decal/cleanable/dirt, -/obj/item/weldingtool/largetank, -/turf/open/floor/iron, -/area/station/cargo/warehouse) "iIb" = ( /obj/item/kirbyplants/random, /obj/machinery/airalarm/directional/west, @@ -32130,14 +32030,6 @@ }, /turf/open/floor/catwalk_floor/iron, /area/station/hallway/floor1/aft) -"iJG" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/cargo/storage) "iJM" = ( /obj/machinery/computer/monitor{ dir = 4; @@ -32152,6 +32044,22 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/carpet, /area/station/service/lawoffice) +"iKe" = ( +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server/upper) +"iKr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/grille, +/turf/open/floor/plating, +/area/station/maintenance/floor1/port) "iKw" = ( /obj/effect/turf_decal/stripes{ dir = 9 @@ -32215,6 +32123,11 @@ dir = 1 }, /area/station/hallway/floor2/aft) +"iLe" = ( +/obj/structure/frame/machine, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/circuit/telecomms, +/area/station/tcommsat/server/upper) "iLy" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 @@ -32269,6 +32182,10 @@ }, /turf/open/floor/iron, /area/station/engineering/atmos/pumproom) +"iMq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor3/port/fore) "iMu" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -32297,12 +32214,6 @@ /obj/structure/railing, /turf/open/floor/engine/hull/reinforced, /area/space/nearstation) -"iMM" = ( -/obj/structure/rack, -/obj/machinery/light/small/directional/east, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/station/maintenance/floor3/starboard/aft) "iMN" = ( /turf/closed/wall, /area/station/service/library) @@ -32344,17 +32255,6 @@ name = "treated water" }, /area/station/maintenance/floor1/port/aft) -"iNs" = ( -/obj/structure/table/reinforced/rglass, -/obj/item/flashlight/lamp{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/effect/spawner/random/entertainment/coin, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/west, -/turf/open/floor/carpet/black, -/area/station/hallway/secondary/service) "iNz" = ( /obj/structure/sign/directions/upload/directional/east, /obj/structure/sign/directions/medical/directional/east{ @@ -32555,21 +32455,6 @@ /obj/machinery/food_cart, /turf/open/floor/iron/kitchen_coldroom/freezerfloor, /area/station/service/kitchen/coldroom) -"iPr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet/black, -/area/station/hallway/secondary/service) -"iPs" = ( -/obj/effect/spawner/random/structure/grille, -/obj/effect/turf_decal/tile/green/half/contrasted{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard) "iPH" = ( /obj/machinery/camera/directional/north{ c_tag = "Permabrig - Isolation A"; @@ -32605,13 +32490,6 @@ /obj/structure/extinguisher_cabinet/directional/south, /turf/open/floor/iron/dark, /area/station/command/bridge) -"iPV" = ( -/obj/effect/turf_decal/trimline/green/warning{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor2/starboard) "iPX" = ( /obj/structure/table/reinforced, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -32631,6 +32509,13 @@ }, /turf/open/floor/pod/light, /area/station/maintenance/floor1/starboard/fore) +"iQd" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_white, +/area/station/medical/abandoned) "iQf" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -32662,6 +32547,11 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/dark/side, /area/station/commons/locker) +"iQJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod, +/area/station/maintenance/floor4/starboard/aft) "iQL" = ( /obj/effect/turf_decal/tile/blue/fourcorners, /obj/machinery/light/cold/directional/north, @@ -32673,6 +32563,11 @@ }, /turf/open/floor/iron/white/textured, /area/station/medical/medbay/central) +"iQR" = ( +/obj/item/toy/plush/bubbleplush, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/fakebasalt, +/area/station/maintenance/floor3/port) "iQU" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -32713,12 +32608,6 @@ }, /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 @@ -32729,12 +32618,23 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/white, /area/station/science/lab) +"iRG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/execution/education) "iRK" = ( /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/textured_half, /area/station/cargo/sorting) +"iRL" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/solars/port/aft) "iRN" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -32747,6 +32647,13 @@ }, /turf/open/floor/catwalk_floor, /area/station/maintenance/floor2/port) +"iRS" = ( +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/floor2/port) "iSr" = ( /obj/effect/turf_decal/stripes/line{ dir = 9 @@ -32768,18 +32675,6 @@ /obj/item/radio/intercom/directional/north, /turf/open/floor/wood, /area/station/service/theater) -"iSu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 10 - }, -/obj/structure/rack, -/obj/effect/spawner/random/maintenance, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/pod/light, -/area/station/maintenance/floor2/port/aft) "iSD" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/trimline/brown/filled/line{ @@ -32790,16 +32685,6 @@ /obj/structure/closet/crate/cardboard, /turf/open/floor/iron, /area/station/maintenance/floor3/starboard/aft) -"iSO" = ( -/obj/effect/turf_decal/tile/green/half, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/pods/directional/south, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/dark/side, -/area/station/hallway/secondary/exit/escape_pod) "iSS" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/yellow/opposingcorners{ @@ -32834,17 +32719,6 @@ /obj/item/bedsheet/dorms, /turf/open/floor/carpet/black, /area/station/hallway/secondary/service) -"iTu" = ( -/obj/machinery/shieldgen, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/red/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/textured_large, -/area/station/engineering/lobby) "iTy" = ( /obj/effect/turf_decal/tile/yellow/opposingcorners{ dir = 8 @@ -32877,18 +32751,11 @@ }, /turf/open/floor/wood, /area/station/service/theater) -"iUe" = ( -/obj/machinery/computer/pandemic, -/obj/structure/sign/poster/official/periodic_table/directional/north, -/obj/machinery/camera/autoname/directional/north, +"iUv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, -/area/station/medical/virology) -"iUE" = ( -/obj/structure/altar_of_gods, -/obj/effect/turf_decal/siding/white, -/obj/item/storage/book/bible, -/turf/open/floor/mineral/silver, -/area/station/service/chapel) +/area/station/maintenance/floor1/port/aft) "iUP" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk{ @@ -32941,14 +32808,6 @@ /obj/effect/turf_decal/tile/red/half, /turf/open/floor/iron/dark/side, /area/station/security/brig) -"iVH" = ( -/obj/machinery/camera/autoname/directional/north, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 1 - }, -/obj/machinery/atm/directional/north, -/turf/open/floor/iron/dark, -/area/station/hallway/floor2/fore) "iVL" = ( /obj/structure/disposalpipe/segment, /obj/machinery/navbeacon{ @@ -33099,11 +32958,6 @@ dir = 1 }, /area/station/science/robotics/lab) -"iXi" = ( -/obj/structure/grille/broken, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor1/port) "iXk" = ( /obj/effect/turf_decal/tile/purple/opposingcorners, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -33202,17 +33056,6 @@ }, /turf/open/floor/plating, /area/station/maintenance/floor3/port/aft) -"iYH" = ( -/obj/structure/sign/poster/official/moth_hardhat/directional/east, -/obj/structure/rack, -/obj/effect/spawner/random/engineering/toolbox, -/obj/effect/turf_decal/tile/green/half{ - dir = 4 - }, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/station/hallway/secondary/exit/escape_pod) "iYK" = ( /obj/structure/chair/stool/bar/directional/south, /turf/open/floor/eighties, @@ -33242,26 +33085,13 @@ dir = 8 }, /area/station/security/prison) -"iZA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/remains/human{ - name = "dehydrated skeleton" - }, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/sign/poster/contraband/random/directional/north, -/obj/item/weaponcrafting/receiver, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/port) -"iZG" = ( -/obj/effect/turf_decal/tile/green/half{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark/textured_half{ +"iZu" = ( +/obj/effect/turf_decal/trimline/blue/line{ dir = 1 }, -/area/station/hallway/secondary/exit/escape_pod) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server/upper) "iZQ" = ( /obj/effect/decal/cleanable/garbage, /obj/effect/turf_decal/tile/green/half/contrasted{ @@ -33354,6 +33184,12 @@ /obj/effect/spawner/random/structure/furniture_parts, /turf/open/floor/pod/dark, /area/station/maintenance/floor3/starboard) +"jaL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/pod, +/area/station/maintenance/floor4/starboard/aft) "jbc" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/pod/light, @@ -33570,6 +33406,12 @@ }, /turf/open/floor/catwalk_floor/iron, /area/station/engineering/atmos/pumproom) +"jdP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/maintenance/two, +/obj/effect/decal/cleanable/wrapping, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard/fore) "jdR" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/sink/directional/east, @@ -33590,6 +33432,16 @@ "jdW" = ( /turf/closed/wall, /area/station/engineering/atmos) +"jeg" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/turf_decal/caution/white{ + pixel_y = -5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor2/starboard/aft) "jek" = ( /obj/structure/chair/stool/directional/east, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -33676,6 +33528,18 @@ }, /turf/open/floor/pod/light, /area/station/maintenance/floor1/starboard) +"jfA" = ( +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/security{ + name = "The Red Door" + }, +/turf/open/floor/carpet/red, +/area/station/maintenance/floor3/port/aft) "jfH" = ( /obj/structure/flora/bush/sparsegrass/style_random, /obj/structure/flora/bush/lavendergrass/style_random, @@ -33688,6 +33552,10 @@ /obj/effect/turf_decal/trimline/green/line, /turf/open/floor/pod/light, /area/station/maintenance/floor2/port/fore) +"jfR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/maintenance/floor2/starboard/fore) "jgm" = ( /obj/structure/bed, /obj/item/bedsheet/cult, @@ -33763,6 +33631,14 @@ /obj/item/circuitboard/machine/telecomms/receiver, /turf/open/floor/pod/light, /area/station/maintenance/floor3/starboard/fore) +"jhn" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/maintenance/floor2/starboard/aft) "jhw" = ( /obj/structure/disposalpipe/segment{ dir = 5 @@ -33807,13 +33683,6 @@ dir = 1 }, /area/station/hallway/floor4/fore) -"jid" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/plating, -/area/station/maintenance/floor4/starboard/aft) "jiu" = ( /obj/machinery/dna_scannernew, /obj/effect/turf_decal/siding/purple{ @@ -33973,16 +33842,11 @@ }, /turf/open/floor/mineral/silver, /area/station/service/chapel) -"jkv" = ( -/obj/effect/turf_decal/trimline/blue/corner, -/obj/structure/cable, -/obj/machinery/light/small/blacklight/directional/west, +"jkt" = ( +/obj/effect/landmark/start/hangover, /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server/upper) +/turf/open/floor/wood/tile, +/area/station/commons/fitness/recreation) "jkH" = ( /obj/machinery/holopad, /turf/open/floor/iron/white, @@ -34017,19 +33881,14 @@ /obj/effect/spawner/random/trash/garbage, /turf/open/floor/pod/light, /area/station/maintenance/floor3/port/aft) -"jlJ" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/green/warning{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 +"jlK" = ( +/obj/machinery/atmospherics/components/binary/pump/layer2{ + dir = 1 }, +/obj/structure/cable, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor2/starboard) +/turf/open/floor/iron, +/area/station/engineering/atmos) "jlS" = ( /obj/structure/table/wood, /obj/item/flashlight/lamp/green, @@ -34175,14 +34034,6 @@ /obj/structure/chair, /turf/open/floor/iron/kitchen/herringbone, /area/station/service/kitchen/diner) -"jnv" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/effect/spawner/random/maintenance/two, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard/fore) "jnD" = ( /obj/effect/turf_decal/trimline/green/filled/corner{ dir = 1 @@ -34227,6 +34078,14 @@ /obj/machinery/airalarm/directional/west, /turf/open/floor/wood/parquet, /area/station/service/lawoffice) +"joq" = ( +/obj/structure/table, +/obj/item/storage/pill_bottle/lsd{ + pixel_x = 5 + }, +/obj/structure/sign/poster/contraband/red_rum/directional/east, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/port) "joy" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -34300,16 +34159,6 @@ }, /turf/open/floor/iron/white/small, /area/station/medical/chemistry) -"jps" = ( -/obj/effect/turf_decal/trimline/blue/corner{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server/upper) "jpy" = ( /obj/structure/window/reinforced/spawner/directional/east, /obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible, @@ -34384,11 +34233,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/engineering/atmos/project) -"jqh" = ( -/obj/machinery/plumbing/bottler, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard/aft) "jqy" = ( /obj/structure/lattice/catwalk, /turf/open/openspace, @@ -34419,11 +34263,10 @@ /obj/item/radio/intercom/directional/west, /turf/open/floor/wood/parquet, /area/station/command/heads_quarters/cmo) -"jqJ" = ( -/obj/structure/window/reinforced/tinted/frosted/spawner/directional/north, -/obj/structure/window/reinforced/tinted/frosted/spawner/directional/east, -/turf/open/openspace, -/area/station/maintenance/floor2/port) +"jqR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/fakebasalt, +/area/station/maintenance/floor3/port) "jrh" = ( /obj/effect/turf_decal/siding/purple/corner{ dir = 4 @@ -34548,6 +34391,19 @@ /obj/effect/mapping_helpers/airlock/access/any/service/bar, /turf/open/floor/wood, /area/station/service/bar) +"jsj" = ( +/obj/item/storage/box/lights/bulbs, +/obj/structure/rack, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor1/port/aft) +"jsy" = ( +/obj/machinery/modular_computer/preset/civilian{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/station/maintenance/floor2/starboard) "jsF" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -34588,16 +34444,6 @@ }, /turf/open/floor/iron/dark, /area/station/hallway/floor3/aft) -"jsW" = ( -/obj/structure/frame/computer{ - dir = 4 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 10 - }, -/obj/structure/window/reinforced/tinted/spawner/directional/west, -/turf/open/floor/wood, -/area/station/commons/vacant_room/office) "jsY" = ( /obj/structure/grille, /turf/open/floor/plating, @@ -34658,6 +34504,13 @@ /obj/machinery/light/cold/no_nightlight/directional/south, /turf/open/floor/grass, /area/station/hallway/secondary/service) +"jtS" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/stack/cable_coil/cut, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/medical/abandoned) "juf" = ( /obj/machinery/door/poddoor/shutters/radiation/preopen{ id = "radshutsouth" @@ -34667,6 +34520,11 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, /turf/open/floor/plating, /area/station/engineering/supermatter) +"juo" = ( +/obj/effect/turf_decal/stripes, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/maintenance/floor2/starboard/aft) "juq" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -34679,6 +34537,18 @@ dir = 10 }, /area/station/hallway/floor2/aft) +"juu" = ( +/obj/structure/closet/firecloset, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/dark, +/area/station/maintenance/floor2/starboard) +"juw" = ( +/obj/machinery/reagentgrinder, +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard) "juE" = ( /obj/effect/turf_decal/tile/green/half/contrasted{ dir = 1 @@ -34762,11 +34632,6 @@ }, /turf/open/floor/iron/dark/side, /area/station/hallway/floor2/fore) -"jvz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/security/range) "jvM" = ( /turf/closed/wall, /area/station/command/heads_quarters/captain/private) @@ -34839,6 +34704,20 @@ dir = 1 }, /area/station/hallway/floor3/fore) +"jwr" = ( +/obj/machinery/button/door/directional/south{ + id = "survhang"; + name = "Hangar Shutters" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 10 + }, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard/aft) "jww" = ( /obj/structure/industrial_lift/public, /turf/open/floor/plating/elevatorshaft, @@ -34883,17 +34762,6 @@ }, /turf/open/floor/iron/white/small, /area/station/commons/fitness/recreation) -"jwW" = ( -/obj/machinery/firealarm/directional/north, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/corner{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/abandoned) "jwY" = ( /obj/effect/turf_decal/stripes/line{ dir = 5 @@ -34997,17 +34865,6 @@ }, /turf/open/floor/engine, /area/station/hallway/secondary/entry) -"jxK" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/firealarm/directional/north, -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor2/starboard) "jxM" = ( /obj/structure/disposalpipe/trunk{ dir = 8 @@ -35135,6 +34992,13 @@ }, /turf/open/floor/iron/dark, /area/station/hallway/floor2/fore) +"jzu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/glass, +/obj/item/bonesetter, +/obj/effect/spawner/random/medical/surgery_tool, +/turf/open/floor/iron/white, +/area/station/maintenance/floor3/starboard/aft) "jzv" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -35144,13 +35008,13 @@ }, /turf/open/floor/bamboo/tatami/black, /area/station/commons/storage/art) -"jzB" = ( -/obj/effect/decal/cleanable/oil/streak, +"jzz" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/pod, -/area/station/maintenance/floor4/starboard/aft) +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron, +/area/station/hallway/secondary/exit/escape_pod) "jzC" = ( /obj/machinery/atmospherics/components/trinary/filter/atmos/flipped/co2{ dir = 8 @@ -35180,11 +35044,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/wood, /area/station/security/detectives_office) -"jzH" = ( -/obj/structure/window/reinforced/tinted/frosted/spawner/directional/north, -/obj/structure/window/reinforced/tinted/frosted/spawner/directional/west, -/turf/open/openspace, -/area/station/maintenance/floor3/port) "jzL" = ( /obj/structure/railing{ dir = 4 @@ -35305,12 +35164,6 @@ /obj/effect/decal/cleanable/oil, /turf/open/floor/pod/light, /area/station/maintenance/floor4/starboard/fore) -"jBf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/reinforced, -/obj/item/bot_assembly/floorbot, -/turf/open/floor/pod/dark, -/area/station/maintenance/floor2/starboard/aft) "jBi" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 4 @@ -35333,6 +35186,37 @@ /obj/effect/spawner/random/trash/grime, /turf/open/floor/pod/light, /area/station/maintenance/floor2/port/fore) +"jBy" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor3/port/aft) +"jBH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/garbage{ + spawn_scatter_radius = 1 + }, +/obj/effect/spawner/random/trash/garbage{ + spawn_scatter_radius = 1 + }, +/obj/effect/spawner/random/trash/garbage{ + spawn_scatter_radius = 1 + }, +/obj/effect/spawner/random/trash/garbage{ + spawn_scatter_radius = 1 + }, +/obj/effect/spawner/random/trash/garbage{ + spawn_scatter_radius = 1 + }, +/obj/item/pen/survival, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/port) "jBI" = ( /obj/structure/chair/sofa/bench/left{ dir = 8 @@ -35424,13 +35308,23 @@ /obj/machinery/duct, /turf/open/floor/iron/kitchen, /area/station/service/kitchen) -"jDD" = ( +"jDA" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/item/stack/sheet/iron/five, /obj/effect/decal/cleanable/dirt, -/obj/item/shovel, -/obj/effect/spawner/random/clothing/gloves, -/obj/structure/rack, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard/fore) +/turf/open/floor/plating, +/area/station/maintenance/floor2/starboard/fore) +"jDI" = ( +/obj/machinery/door/airlock/hatch{ + name = "Fighter Airlock" + }, +/obj/effect/mapping_helpers/airlock/locked, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/mineral/plastitanium/red, +/area/station/maintenance/floor4/starboard/aft) "jDJ" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -35454,11 +35348,6 @@ }, /turf/open/floor/iron/white/textured_large, /area/station/cargo/miningoffice) -"jEe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/pod/light, -/area/station/maintenance/floor2/starboard/fore) "jEf" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 @@ -35565,19 +35454,6 @@ }, /turf/open/floor/iron/white, /area/station/science/lobby) -"jFB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/oil/streak, -/obj/effect/turf_decal/stripes, -/turf/open/floor/iron, -/area/station/maintenance/floor2/starboard/aft) -"jFE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/pod/light, -/area/station/maintenance/floor3/port/fore) "jFH" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -35639,16 +35515,6 @@ }, /turf/open/floor/catwalk_floor, /area/station/maintenance/floor4/starboard/fore) -"jFQ" = ( -/obj/effect/turf_decal/trimline/green/warning{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/dark, -/area/station/maintenance/floor3/port) "jFT" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/grille, @@ -35678,11 +35544,6 @@ /obj/effect/turf_decal/stripes/white/line, /turf/open/floor/iron/dark/side, /area/station/engineering/storage/tech) -"jGj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/random/directional/south, -/turf/open/floor/iron/dark/smooth_large, -/area/station/service/library/printer) "jGn" = ( /obj/structure/table/wood/poker, /obj/effect/turf_decal/trimline/blue/filled/line, @@ -35692,6 +35553,11 @@ "jGF" = ( /turf/closed/wall, /area/station/service/kitchen/kitchen_backroom) +"jGG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard/aft) "jGI" = ( /obj/effect/turf_decal/tile/green/half{ dir = 8 @@ -35854,6 +35720,12 @@ dir = 8 }, /area/station/command/teleporter) +"jIL" = ( +/obj/machinery/computer/slot_machine, +/obj/machinery/firealarm/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/green, +/area/station/service/abandoned_gambling_den) "jIP" = ( /obj/structure/lattice/catwalk, /obj/machinery/atmospherics/pipe/heat_exchanging/manifold{ @@ -35901,6 +35773,12 @@ dir = 1 }, /area/station/security/checkpoint) +"jJd" = ( +/obj/structure/rack, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/food_or_drink/cups, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard) "jJf" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron/white, @@ -35933,16 +35811,6 @@ /obj/structure/training_machine, /turf/open/floor/iron, /area/station/security/range) -"jJI" = ( -/obj/effect/spawner/random/structure/chair_maintenance{ - dir = 8 - }, -/obj/item/toy/plush/pkplush{ - name = "Hug Emoji" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/floor4/starboard) "jJP" = ( /obj/effect/decal/cleanable/glass, /turf/open/floor/engine, @@ -35965,6 +35833,10 @@ /obj/structure/cable, /turf/open/floor/engine, /area/station/maintenance/floor1/port/aft) +"jKd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard) "jKf" = ( /obj/machinery/vending/wallmed/directional/west, /obj/effect/turf_decal/trimline/blue/filled/line{ @@ -35974,19 +35846,13 @@ /obj/machinery/rnd/production/techfab/department/medical, /turf/open/floor/iron/white, /area/station/medical/storage) -"jKh" = ( -/obj/structure/closet/cabinet, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood/large, -/area/station/maintenance/floor4/starboard/aft) -"jKi" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, +"jKr" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/engine, -/area/station/maintenance/floor4/starboard/aft) +/obj/effect/decal/cleanable/oil, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/pod/light, +/area/station/maintenance/floor1/port/fore) "jKt" = ( /turf/closed/wall/r_wall, /area/station/tcommsat/computer) @@ -35994,6 +35860,10 @@ /obj/machinery/holopad, /turf/open/floor/carpet/blue, /area/station/command/meeting_room) +"jKG" = ( +/obj/structure/window/reinforced/tinted/frosted/spawner/directional/west, +/turf/open/openspace, +/area/station/maintenance/floor3/port) "jKK" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -36071,15 +35941,6 @@ /obj/structure/grille, /turf/open/floor/engine/hull/reinforced, /area/space/nearstation) -"jMa" = ( -/obj/structure/window/reinforced/plasma/spawner/directional/south, -/obj/structure/window/reinforced/plasma/spawner/directional/north, -/obj/structure/window/reinforced/plasma/spawner/directional/west, -/obj/machinery/power/shuttle_engine/heater{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/floor1/starboard/aft) "jMc" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 1 @@ -36087,16 +35948,6 @@ /obj/machinery/door/window/right/directional/north, /turf/open/misc/sandy_dirt, /area/station/hallway/secondary/entry) -"jMd" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atm/directional/north, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) "jMn" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 @@ -36106,18 +35957,6 @@ }, /turf/open/floor/iron/dark, /area/station/security/execution/education) -"jMu" = ( -/obj/machinery/door/airlock{ - name = "Escape Pod C" - }, -/obj/effect/turf_decal/tile/green/half{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit/escape_pod) "jME" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /obj/machinery/shower/directional/east, @@ -36169,23 +36008,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white, /area/station/medical/pharmacy) -"jNp" = ( -/obj/machinery/disposal/bin{ - name = "Book Returns" - }, -/obj/structure/disposalpipe/trunk{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/siding/wood/corner{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk, -/obj/structure/window/reinforced/spawner/directional/south, -/turf/open/floor/iron, -/area/station/service/library) "jNr" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/pod/light, @@ -36284,6 +36106,13 @@ initial_gas_mix = "TEMP=2.7" }, /area/station/science/ordnance/bomb) +"jOx" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor2/starboard/aft) "jOA" = ( /obj/structure/closet/l3closet/security, /obj/effect/turf_decal/tile/red/fourcorners, @@ -36326,6 +36155,11 @@ /obj/effect/turf_decal/tile/purple/opposingcorners, /turf/open/floor/iron/white, /area/station/science/explab) +"jOP" = ( +/obj/structure/window/plasma/spawner/directional/south, +/obj/machinery/rnd/server, +/turf/open/floor/circuit/telecomms, +/area/station/science/server) "jOS" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/skill_station, @@ -36340,14 +36174,6 @@ /obj/effect/mapping_helpers/airlock/access/all/engineering/construction, /turf/open/floor/pod/light, /area/station/maintenance/solars/starboard/aft) -"jOX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/graffiti{ - pixel_x = -32 - }, -/obj/effect/spawner/random/structure/closet_maintenance, -/turf/open/floor/pod/light, -/area/station/maintenance/floor3/starboard/aft) "jPd" = ( /obj/effect/turf_decal/bot, /obj/structure/rack, @@ -36371,30 +36197,12 @@ /obj/item/radio/intercom/directional/north, /turf/open/floor/wood, /area/station/commons/vacant_room/office) -"jPp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/gibs/torso, -/obj/effect/decal/cleanable/blood, -/obj/effect/spawner/random/trash/garbage{ - spawn_loot_count = 3; - spawn_scatter_radius = 1 - }, -/obj/structure/spider/stickyweb, -/turf/open/floor/pod/dark, -/area/station/maintenance/floor4/starboard) "jPr" = ( /obj/structure/closet/bombcloset, /obj/machinery/light/cold/no_nightlight/directional/west, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white, /area/station/science/lobby) -"jPs" = ( -/obj/machinery/camera/autoname/directional/north, -/obj/machinery/atm/directional/north, -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/station/hallway/floor3/aft) "jPv" = ( /obj/effect/turf_decal/tile/yellow, /obj/effect/turf_decal/tile/brown{ @@ -36445,6 +36253,14 @@ /obj/machinery/vending/boozeomat, /turf/open/floor/carpet/royalblack, /area/station/service/kitchen/diner) +"jPT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/turf/open/floor/wood, +/area/station/maintenance/floor3/starboard/aft) "jQb" = ( /obj/machinery/door/airlock/medical{ name = "Ph-rm--y" @@ -36455,10 +36271,6 @@ dir = 8 }, /area/station/medical/chemistry) -"jQf" = ( -/obj/structure/sign/poster/contraband/eat/directional/east, -/turf/open/floor/pod/light, -/area/station/maintenance/floor1/port) "jQj" = ( /obj/effect/turf_decal/trimline/blue/filled/corner, /obj/effect/turf_decal/trimline/blue/arrow_cw{ @@ -36467,11 +36279,29 @@ /obj/machinery/duct, /turf/open/floor/iron/white, /area/station/medical/medbay/central) +"jQn" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/gibs/bubblegum, +/obj/effect/decal/cleanable/dirt, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/item/clothing/suit/toggle/labcoat, +/turf/open/floor/iron, +/area/station/maintenance/floor3/starboard/aft) "jQw" = ( /turf/open/floor/iron/dark/textured_corner{ dir = 8 }, /area/station/maintenance/floor1/starboard/aft) +"jQx" = ( +/obj/structure/closet/firecloset/full, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/port) "jQG" = ( /obj/structure/railing, /obj/effect/decal/cleanable/dirt, @@ -36621,6 +36451,11 @@ /obj/machinery/duct, /turf/open/floor/wood, /area/station/service/kitchen/diner) +"jRU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/blobstart, +/turf/open/floor/mineral/plastitanium/red, +/area/station/maintenance/floor4/starboard/aft) "jRV" = ( /obj/item/radio/intercom/directional/west, /obj/machinery/vending/wardrobe/sec_wardrobe, @@ -36830,11 +36665,6 @@ "jVK" = ( /turf/closed/wall/r_wall, /area/station/security/prison) -"jVM" = ( -/obj/machinery/space_heater, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor1/port/aft) "jVN" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -36913,6 +36743,28 @@ /obj/machinery/light/cold/directional/north, /turf/open/floor/iron/white, /area/station/medical/medbay/central) +"jWw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/floor2/starboard/aft) +"jWH" = ( +/obj/machinery/firealarm/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/abandoned) +"jWI" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/maintenance/floor2/port/aft) "jWJ" = ( /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -36945,6 +36797,11 @@ "jXc" = ( /turf/open/floor/iron/white/smooth_edge, /area/station/science/robotics/lab) +"jXd" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard/aft) "jXj" = ( /obj/structure/extinguisher_cabinet/directional/south, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -36973,6 +36830,11 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/maintenance/floor2/starboard/aft) +"jXS" = ( +/obj/item/stack/sheet/iron/five, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/white, +/area/station/medical/abandoned) "jXX" = ( /obj/machinery/camera/directional/north{ c_tag = "Holodeck - Fore"; @@ -37019,6 +36881,23 @@ }, /turf/open/floor/carpet/royalblack, /area/station/service/kitchen/diner) +"jYB" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/visible/layer4{ + dir = 4 + }, +/obj/effect/landmark/navigate_destination/incinerator, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/maintenance/disposal/incinerator) +"jYE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/broken/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/cargo/warehouse) "jYH" = ( /obj/effect/turf_decal/trimline/green/filled/line, /obj/effect/turf_decal/trimline/green/filled/line{ @@ -37396,6 +37275,11 @@ /obj/effect/mapping_helpers/airlock/unres, /turf/open/floor/pod/dark, /area/station/maintenance/floor3/port/aft) +"kdR" = ( +/obj/effect/spawner/random/structure/crate, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/medical/abandoned) "keg" = ( /obj/machinery/light_switch/directional/south, /obj/structure/cable, @@ -37406,17 +37290,6 @@ }, /turf/open/floor/carpet, /area/station/command/heads_quarters/captain) -"keh" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/mass_driver/ordnance{ - dir = 1 - }, -/obj/structure/window/reinforced/spawner/directional/south, -/obj/structure/window/reinforced/spawner/directional/west, -/turf/open/floor/iron/dark/textured, -/area/station/science/ordnance/storage) "kem" = ( /obj/structure/chair/wood, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, @@ -37472,6 +37345,14 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/solars/starboard/aft) +"keQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/graffiti{ + pixel_x = -32 + }, +/obj/effect/spawner/random/structure/closet_maintenance, +/turf/open/floor/pod/light, +/area/station/maintenance/floor3/starboard/aft) "keR" = ( /obj/structure/table/reinforced, /obj/item/folder{ @@ -37577,6 +37458,11 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/station/cargo/storage) +"kgv" = ( +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor1/port) "kgT" = ( /turf/open/floor/pod/dark, /area/station/maintenance/floor3/starboard) @@ -37679,13 +37565,6 @@ dir = 4 }, /area/station/command/teleporter) -"khP" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/floor3/port) "khQ" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -37722,13 +37601,6 @@ /obj/effect/landmark/start/scientist, /turf/open/floor/iron/white, /area/station/science/circuits) -"kil" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/light/colour_cycle/dancefloor_a, -/area/station/medical/abandoned) "kis" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -37755,13 +37627,6 @@ /obj/machinery/newscaster/directional/north, /turf/open/floor/iron, /area/station/ai_monitored/command/storage/eva) -"kiS" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/medical/abandoned) "kjb" = ( /obj/effect/decal/cleanable/blood/splatter, /obj/machinery/light/dim/directional/east, @@ -37815,6 +37680,29 @@ /obj/effect/decal/cleanable/oil/streak, /turf/open/floor/iron/textured_large, /area/station/engineering/lobby) +"kjL" = ( +/obj/structure/window/reinforced/plasma/spawner/directional/south, +/obj/structure/window/reinforced/plasma/spawner/directional/north, +/obj/structure/window/reinforced/plasma/spawner/directional/west, +/obj/machinery/power/shuttle_engine/heater{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/maintenance/floor1/starboard/aft) +"kjM" = ( +/obj/structure/window/reinforced/tinted/frosted/spawner/directional/east, +/obj/structure/window/reinforced/tinted/frosted/spawner/directional/south, +/turf/open/openspace, +/area/station/maintenance/floor4/port/aft) +"kjP" = ( +/obj/structure/sign/poster/official/moth_hardhat/directional/east, +/obj/structure/rack, +/obj/effect/turf_decal/trimline/purple/warning{ + dir = 4 + }, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/pod/light, +/area/station/maintenance/floor2/starboard/fore) "kkg" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -37841,13 +37729,6 @@ /obj/effect/spawner/random/entertainment/cigarette_pack, /turf/open/floor/wood, /area/station/hallway/floor3/fore) -"kkt" = ( -/obj/structure/bed/dogbed{ - name = "pet bed" - }, -/obj/structure/window/spawner/directional/south, -/turf/open/floor/carpet/green, -/area/station/command/heads_quarters/rd) "kkw" = ( /obj/structure/cable, /obj/machinery/power/floodlight{ @@ -37970,6 +37851,14 @@ /obj/structure/cable, /turf/open/floor/wood/tile, /area/station/service/library) +"kmx" = ( +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/window/spawner/directional/west, +/obj/structure/window/spawner/directional/north, +/obj/structure/window/spawner/directional/south, +/turf/open/floor/grass, +/area/station/hallway/secondary/exit/departure_lounge) "kmG" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -37991,6 +37880,19 @@ "kmR" = ( /turf/closed/wall, /area/station/science/lab) +"kmS" = ( +/obj/effect/turf_decal/caution/stand_clear/white{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard/aft) "kmT" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/disposalpipe/segment, @@ -37999,16 +37901,6 @@ }, /turf/open/floor/iron/white, /area/station/medical/storage) -"knh" = ( -/obj/effect/spawner/random/trash/graffiti{ - pixel_y = -32 - }, -/obj/structure/disposalpipe/broken{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/medical/abandoned) "knk" = ( /obj/structure/railing{ dir = 8 @@ -38024,6 +37916,10 @@ }, /turf/open/floor/wood/tile, /area/station/service/library) +"knn" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor2/starboard) "knA" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -38257,6 +38153,11 @@ }, /turf/open/floor/pod/dark, /area/station/maintenance/floor2/port) +"kqh" = ( +/obj/structure/sign/poster/official/do_not_question/directional/south, +/obj/effect/turf_decal/tile/dark_red/fourcorners, +/turf/open/floor/iron, +/area/station/security/brig) "kqk" = ( /obj/structure/chair/pew/right{ dir = 4 @@ -38474,14 +38375,6 @@ /obj/structure/cable, /turf/open/floor/iron/checker, /area/station/cargo/miningdock) -"ksG" = ( -/obj/effect/turf_decal/tile/red/anticorner{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted/frosted/spawner/directional/south, -/obj/structure/window/reinforced/tinted/frosted/spawner/directional/west, -/turf/open/floor/stone, -/area/station/maintenance/floor1/port) "ksN" = ( /obj/effect/turf_decal/bot_white, /obj/effect/turf_decal/siding/thinplating_new/dark{ @@ -38518,6 +38411,11 @@ /obj/item/radio/intercom/directional/east, /turf/open/floor/iron/dark/textured_large, /area/station/engineering/atmos/office) +"kto" = ( +/obj/effect/spawner/random/structure/crate, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/maintenance/floor2/starboard/fore) "ktu" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 @@ -38525,11 +38423,6 @@ /obj/effect/turf_decal/box, /turf/open/floor/wood, /area/station/medical/psychology) -"ktz" = ( -/obj/item/radio/intercom/directional/west, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) "ktC" = ( /obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ dir = 1 @@ -38584,15 +38477,6 @@ /obj/structure/cable, /turf/open/floor/carpet, /area/station/commons/vacant_room/office) -"kuA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/reinforced/plasmarglass, -/obj/item/reagent_containers/pill/cyanide{ - desc = "What could it be?"; - name = "red pill" - }, -/turf/open/floor/carpet/red, -/area/station/maintenance/floor3/port/aft) "kuB" = ( /obj/effect/mapping_helpers/mail_sorting/science/robotics, /obj/structure/disposalpipe/sorting/mail/flip{ @@ -38723,6 +38607,15 @@ /obj/structure/stairs/north, /turf/open/floor/iron/smooth, /area/station/hallway/floor3/fore) +"kwk" = ( +/obj/machinery/camera/motion/directional/east{ + c_tag = "MiniSat Foyer"; + network = list("minisat") + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/turret_protected/aisat) "kwl" = ( /turf/open/floor/iron/dark/side{ dir = 9 @@ -38761,6 +38654,12 @@ /obj/machinery/power/smes/engineering, /turf/open/floor/iron, /area/station/engineering/engine_smes) +"kwT" = ( +/obj/structure/closet/cabinet, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood/large, +/area/station/maintenance/floor4/starboard/aft) "kxf" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -38778,13 +38677,6 @@ }, /turf/open/floor/iron, /area/station/maintenance/disposal/incinerator) -"kxs" = ( -/obj/structure/table/wood/poker, -/obj/effect/spawner/random/entertainment/gambling, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/broken/directional/west, -/turf/open/floor/carpet/green, -/area/station/service/abandoned_gambling_den) "kxu" = ( /obj/item/wheelchair{ pixel_y = -3 @@ -38883,6 +38775,14 @@ /obj/machinery/shieldgen, /turf/open/floor/iron/corner, /area/station/cargo/miningdock) +"kyp" = ( +/obj/item/clothing/suit/toggle/owlwings/griffinwings, +/obj/item/clothing/under/costume/griffin, +/obj/item/clothing/shoes/griffin, +/obj/structure/sign/poster/contraband/the_griffin/directional/north, +/obj/structure/closet/cabinet, +/turf/open/floor/wood/parquet, +/area/station/maintenance/floor2/port/aft) "kyq" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 4 @@ -38926,6 +38826,15 @@ "kyR" = ( /turf/closed/wall, /area/station/hallway/floor1/fore) +"kyT" = ( +/obj/machinery/computer{ + desc = "Might have worked twenty years ago."; + dir = 8; + name = "Bluescreened Weapons System" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/mineral/plastitanium/red, +/area/station/maintenance/floor4/starboard/aft) "kza" = ( /obj/structure/railing/corner, /obj/machinery/disposal/bin, @@ -38992,6 +38901,13 @@ dir = 4 }, /area/station/hallway/floor3/aft) +"kzR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/maintenance/floor2/port/aft) "kzU" = ( /obj/effect/landmark/start/hangover, /turf/open/floor/iron/dark/side{ @@ -39048,6 +38964,12 @@ }, /turf/open/floor/iron/smooth, /area/station/cargo/sorting) +"kAD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/floodlight_frame, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/floor4/starboard/aft) "kAE" = ( /obj/effect/turf_decal/siding/wideplating_new{ dir = 4 @@ -39103,6 +39025,11 @@ /obj/effect/turf_decal/tile/red/fourcorners, /turf/open/floor/iron/dark, /area/station/security/detectives_office/private_investigators_office) +"kBf" = ( +/obj/structure/window/plasma/spawner/directional/south, +/obj/machinery/rnd/server/master, +/turf/open/floor/circuit/telecomms, +/area/station/science/server) "kBi" = ( /obj/effect/turf_decal/tile/blue/opposingcorners, /obj/machinery/computer/atmos_alert{ @@ -39153,16 +39080,6 @@ }, /turf/open/floor/plating, /area/station/maintenance/floor4/starboard/aft) -"kBI" = ( -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/station_engineer, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/iron/dark, -/area/station/engineering/lobby) "kBL" = ( /obj/machinery/airalarm/directional/west, /turf/open/floor/eighties, @@ -39185,11 +39102,6 @@ }, /turf/open/floor/iron/white, /area/station/medical/treatment_center) -"kCi" = ( -/obj/effect/spawner/random/trash/bin, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard/fore) "kCm" = ( /obj/effect/turf_decal/tile/purple/opposingcorners, /obj/machinery/holopad, @@ -39276,10 +39188,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white, /area/station/medical/medbay/central) -"kEu" = ( -/obj/structure/sign/poster/contraband/atmosia_independence/directional/west, -/turf/open/floor/pod/light, -/area/station/maintenance/floor1/port/fore) "kEv" = ( /obj/effect/turf_decal/arrows, /turf/open/floor/wood/tile, @@ -39325,6 +39233,14 @@ dir = 4 }, /area/station/hallway/floor2/aft) +"kEV" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/effect/spawner/random/maintenance/two, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard/fore) "kEY" = ( /obj/machinery/door/airlock/hatch{ name = "Maintenance Bulkhead" @@ -39340,10 +39256,6 @@ /obj/structure/chair/stool/bar/directional/north, /turf/open/floor/iron/kitchen, /area/station/service/kitchen/abandoned) -"kFd" = ( -/obj/structure/window/reinforced/tinted/frosted/spawner/directional/west, -/turf/open/openspace, -/area/station/maintenance/floor2/port) "kFk" = ( /obj/machinery/atmospherics/pipe/smart/simple/purple/hidden/layer1{ dir = 4 @@ -39377,13 +39289,6 @@ "kFy" = ( /turf/open/openspace, /area/station/science/ordnance/testlab) -"kFF" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/engine, -/area/station/maintenance/floor4/starboard/aft) "kFJ" = ( /obj/machinery/photocopier, /obj/machinery/camera/autoname/directional/north, @@ -39409,10 +39314,6 @@ }, /turf/open/floor/iron, /area/station/science/robotics/lab) -"kFY" = ( -/obj/structure/window/reinforced/tinted/frosted/spawner/directional/north, -/turf/open/openspace, -/area/station/maintenance/floor3/port) "kGg" = ( /obj/structure/window/reinforced/spawner/directional/east, /obj/machinery/atmospherics/components/unary/thermomachine/freezer, @@ -39425,12 +39326,14 @@ /obj/machinery/recharge_station, /turf/open/floor/iron/white, /area/station/medical/medbay/central) -"kGr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +"kGk" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners{ + dir = 1 + }, +/obj/machinery/computer/security/telescreen/entertainment/directional/north, /obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/medical/abandoned) +/turf/open/floor/iron/checker, +/area/station/cargo/miningdock) "kGv" = ( /obj/structure/closet/crate/trashcart{ name = "book bin" @@ -39440,11 +39343,6 @@ /obj/item/radio/intercom/directional/west, /turf/open/floor/iron/dark/textured_large, /area/station/service/library/printer) -"kGy" = ( -/obj/effect/turf_decal/trimline/blue/line, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server/upper) "kGz" = ( /obj/effect/decal/cleanable/glitter, /obj/effect/turf_decal/siding/blue{ @@ -39476,6 +39374,13 @@ /obj/structure/tank_holder/extinguisher, /turf/open/floor/iron, /area/station/maintenance/floor1/starboard/fore) +"kGO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/light/colour_cycle/dancefloor_a, +/area/station/medical/abandoned) "kGZ" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -39513,14 +39418,6 @@ /obj/structure/closet/firecloset/full, /turf/open/floor/iron/dark, /area/station/hallway/floor1/fore) -"kHx" = ( -/obj/structure/closet/firecloset/full, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/dark, -/area/station/maintenance/floor4/port) "kHG" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -39599,42 +39496,40 @@ dir = 4 }, /area/station/hallway/floor3/fore) +"kIa" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/maintenance/floor4/starboard/aft) "kIe" = ( /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 +"kIt" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/trimline/red/line{ + dir = 6 }, -/turf/open/floor/iron/dark/smooth_half, -/area/station/cargo/drone_bay) -"kIu" = ( -/obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/turf/open/floor/wood, -/area/station/maintenance/floor3/starboard/aft) +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard/aft) "kIw" = ( /obj/structure/rack, /obj/effect/spawner/random/maintenance, /obj/effect/turf_decal/trimline/dark_blue/end, /turf/open/floor/iron/dark, /area/station/commons/storage/tools) +"kIC" = ( +/obj/item/skillchip/light_remover, +/obj/structure/closet/crate, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard/fore) "kIG" = ( /obj/machinery/button/door/directional/north{ id = "Secure Storage"; @@ -39811,11 +39706,6 @@ /obj/effect/turf_decal/siding/wood, /turf/open/floor/wood/tile, /area/station/service/library) -"kKJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/space_heater, -/turf/open/floor/pod/light, -/area/station/maintenance/floor2/starboard/fore) "kKK" = ( /obj/effect/turf_decal/tile/brown{ dir = 4 @@ -39914,13 +39804,6 @@ /obj/machinery/duct, /turf/open/floor/iron/dark, /area/station/security/execution/education) -"kLF" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor2/starboard/aft) "kLH" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, @@ -39951,11 +39834,6 @@ }, /turf/open/floor/iron, /area/station/maintenance/floor3/starboard/aft) -"kMb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/pod, -/area/station/maintenance/floor4/port/fore) "kMh" = ( /obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ dir = 10 @@ -39989,13 +39867,6 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/iron/dark, /area/station/hallway/floor2/fore) -"kNd" = ( -/obj/machinery/vending/wallmed/directional/south, -/obj/structure/bed/medical/emergency, -/obj/machinery/iv_drip, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/iron/white, -/area/station/security/medical) "kNh" = ( /obj/effect/mapping_helpers/broken_floor, /obj/structure/fluff/paper/stack{ @@ -40082,6 +39953,11 @@ /obj/effect/turf_decal/tile/green/full, /turf/open/floor/iron, /area/station/service/hydroponics) +"kOK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/moisture_trap, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/port/aft) "kON" = ( /obj/machinery/light/small/directional/north, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, @@ -40106,15 +39982,13 @@ dir = 4 }, /area/station/commons/storage/primary) -"kPm" = ( -/obj/structure/sign/poster/contraband/atmosia_independence/directional/west, -/obj/machinery/light/small/directional/west, -/obj/machinery/light_switch/directional/south, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 +"kPl" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 }, -/turf/open/floor/wood/parquet, -/area/station/maintenance/floor2/port/aft) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/maintenance/floor2/starboard/aft) "kPq" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -40139,11 +40013,22 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/side, /area/station/security/prison) +"kPH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard/aft) "kPN" = ( /turf/open/floor/iron/dark/textured_edge{ dir = 8 }, /area/station/maintenance/floor1/starboard/aft) +"kPP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine, +/area/station/maintenance/floor4/starboard/aft) "kPW" = ( /obj/structure/grille, /turf/open/floor/plating, @@ -40202,6 +40087,12 @@ }, /turf/open/floor/iron/dark, /area/station/hallway/floor2/fore) +"kQx" = ( +/obj/item/stack/sheet/iron, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/medical/abandoned) "kQF" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 5 @@ -40210,6 +40101,12 @@ /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, @@ -40349,14 +40246,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/catwalk_floor, /area/station/maintenance/floor2/starboard) -"kSn" = ( -/obj/machinery/iv_drip, -/obj/structure/mirror/directional/south, -/obj/structure/sign/poster/official/cleanliness/directional/east, -/obj/machinery/camera/autoname/directional/east, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/iron/dark, -/area/station/medical/surgery/fore) "kSp" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -40462,6 +40351,13 @@ /obj/structure/extinguisher_cabinet/directional/south, /turf/open/floor/iron/dark/side, /area/station/hallway/floor4/fore) +"kTD" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer2{ + dir = 10 + }, +/obj/structure/window/reinforced/plasma/spawner/directional/south, +/turf/open/floor/engine/airless, +/area/station/science/ordnance/freezerchamber) "kTI" = ( /obj/effect/turf_decal/tile/red/opposingcorners{ dir = 1 @@ -40554,19 +40450,6 @@ "kVp" = ( /turf/open/floor/engine/hull, /area/space/nearstation) -"kVs" = ( -/obj/machinery/computer/security/telescreen/minisat{ - dir = 8; - pixel_x = 28 - }, -/obj/machinery/camera/directional/south{ - c_tag = "MiniSat Exterior Access"; - network = list("minisat") - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat) "kVu" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, @@ -40605,17 +40488,6 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/floor2/port/aft) -"kVY" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/table/reinforced, -/obj/item/stack/sheet/iron/twenty, -/obj/item/stack/sheet/glass/fifty{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/floor2/port/aft) "kVZ" = ( /obj/effect/turf_decal/trimline/blue/filled/warning{ dir = 1 @@ -40628,11 +40500,6 @@ /obj/effect/mapping_helpers/airlock/access/all/command/eva, /turf/open/floor/iron/dark, /area/station/ai_monitored/command/storage/eva) -"kWa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/white, -/area/station/maintenance/floor3/starboard/aft) "kWd" = ( /obj/effect/decal/cleanable/vomit/old, /obj/machinery/airalarm/directional/east, @@ -40685,6 +40552,16 @@ }, /turf/open/floor/carpet, /area/station/command/heads_quarters/captain) +"kWy" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/red/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured_large, +/area/station/engineering/lobby) "kWz" = ( /obj/effect/turf_decal/tile/blue/fourcorners, /obj/machinery/light/cold/directional/west, @@ -40700,11 +40577,6 @@ /obj/effect/turf_decal/tile/blue/fourcorners, /turf/open/floor/iron/dark, /area/station/command/bridge) -"kWM" = ( -/obj/item/stack/tile/wood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/service/abandoned_gambling_den) "kWN" = ( /obj/structure/chair/stool/bar/directional/south, /obj/effect/landmark/start/scientist, @@ -40750,11 +40622,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/bamboo/tatami/black, /area/station/commons/storage/art) -"kXK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/blobstart, -/turf/open/floor/mineral/plastitanium/red, -/area/station/maintenance/floor4/starboard/aft) "kXP" = ( /obj/machinery/vending/wardrobe/chef_wardrobe, /turf/open/floor/wood/large, @@ -40770,6 +40637,16 @@ /obj/structure/cable, /turf/open/floor/iron/white, /area/station/science/lower) +"kYn" = ( +/obj/effect/turf_decal/tile/red/diagonal_edge, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/checkpoint/escape) "kYt" = ( /obj/structure/chair/comfy/carp, /turf/open/floor/carpet/neon/simple/pink/nodots, @@ -40807,10 +40684,6 @@ /obj/structure/cable, /turf/open/floor/catwalk_floor, /area/station/maintenance/floor3/port) -"kYD" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/smooth_large, -/area/station/service/library/printer) "kYH" = ( /obj/structure/disposalpipe/segment, /obj/structure/sign/poster/random/directional/east, @@ -40852,13 +40725,6 @@ /obj/structure/cable, /turf/open/floor/wood, /area/station/service/bar/atrium) -"kZG" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet, -/area/station/service/abandoned_gambling_den) "kZS" = ( /obj/effect/turf_decal/siding/wood, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -40890,25 +40756,21 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/ai_monitored/turret_protected/aisat/service) -"lad" = ( -/obj/effect/decal/cleanable/dirt, +"lae" = ( +/obj/effect/turf_decal/trimline/green/arrow_cw{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/pod, -/area/station/maintenance/floor4/starboard/aft) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/cargo/miningdock) "lag" = ( /obj/structure/closet/crate/freezer/blood, /obj/effect/turf_decal/tile/blue/fourcorners, /obj/machinery/light/cold/directional/west, /turf/open/floor/iron/white, /area/station/medical/surgery/aft) -"lak" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/tracks, -/obj/effect/landmark/generic_maintenance_landmark, -/turf/open/floor/pod/dark, -/area/station/maintenance/floor4/starboard) "lao" = ( /obj/structure/chair/sofa/corp/right, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -40951,6 +40813,11 @@ /obj/machinery/status_display/ai/directional/south, /turf/open/floor/iron/dark/side, /area/station/hallway/floor3/fore) +"laN" = ( +/obj/effect/spawner/random/engineering/atmospherics_portable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/dark, +/area/station/maintenance/floor3/port/aft) "laO" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/trimline/blue/filled/line{ @@ -41018,19 +40885,19 @@ }, /turf/open/floor/wood/large, /area/station/service/library/lounge) -"lbr" = ( +"lbz" = ( +/obj/structure/cable, +/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/machinery/light/directional/north, +/turf/open/floor/plating, +/area/station/medical/abandoned) +"lbD" = ( +/obj/effect/turf_decal/stripes/line, /obj/effect/decal/cleanable/dirt, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/pod/light, -/area/station/maintenance/solars/port/aft) -"lbt" = ( -/obj/structure/window/reinforced/tinted/frosted/spawner/directional/north, -/turf/open/openspace, -/area/station/maintenance/floor2/port) +/obj/effect/decal/cleanable/shreds, +/turf/open/floor/engine, +/area/station/maintenance/floor4/starboard/aft) "lbK" = ( /obj/structure/chair/stool/bar/directional/south, /obj/effect/decal/cleanable/confetti, @@ -41072,19 +40939,6 @@ "lcv" = ( /turf/closed/wall/r_wall, /area/station/maintenance/floor2/port) -"lcF" = ( -/obj/effect/turf_decal/tile/green/half{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock{ - name = "Escape Pod C" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit/escape_pod) "lcN" = ( /obj/effect/turf_decal/siding/yellow{ dir = 6 @@ -41125,11 +40979,6 @@ dir = 10 }, /area/station/engineering/storage/tech) -"ldq" = ( -/obj/effect/spawner/random/structure/table, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/white, -/area/station/medical/abandoned) "ldw" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -41144,6 +40993,10 @@ /obj/machinery/holopad, /turf/open/floor/iron/white/textured, /area/station/medical/medbay/central) +"ldB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/cargo/warehouse) "ldD" = ( /obj/machinery/door/airlock/engineering{ name = "Power Generation Experimentation" @@ -41165,6 +41018,14 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/hallway/floor2/aft) +"ldJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/c38{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/service/abandoned_gambling_den) "ldO" = ( /obj/structure/chair/stool/bar/directional/east, /obj/structure/disposalpipe/segment{ @@ -41172,23 +41033,27 @@ }, /turf/open/floor/wood, /area/station/service/bar/atrium) +"ldP" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard) "ldQ" = ( /obj/structure/chair/comfy/shuttle{ dir = 8 }, /turf/open/floor/catwalk_floor/iron_smooth, /area/station/maintenance/radshelter/sci) -"len" = ( -/obj/machinery/status_display/evac/directional/west, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/docking/directional/south, -/obj/machinery/computer/shuttle/mining/common{ +"lek" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/iron/dark/side{ - dir = 10 - }, -/area/station/hallway/secondary/exit) +/obj/machinery/atm/directional/north, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) "leo" = ( /obj/structure/closet/emcloset/anchored, /turf/open/floor/plating, @@ -41203,33 +41068,11 @@ /obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, /turf/open/floor/plating, /area/station/engineering/atmos) -"lew" = ( -/obj/machinery/light/dim/directional/south, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/sign/poster/contraband/random/directional/south, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/port) "lez" = ( /obj/effect/turf_decal/bot, /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 @@ -41320,6 +41163,11 @@ /obj/structure/cable, /turf/open/floor/catwalk_floor, /area/station/maintenance/floor1/starboard/fore) +"lfH" = ( +/obj/item/stack/tile/iron/white, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/medical/abandoned) "lfL" = ( /obj/effect/turf_decal/tile/blue/half{ dir = 8 @@ -41401,11 +41249,6 @@ /obj/item/clothing/suit/toggle/labcoat, /turf/open/floor/iron/white, /area/station/maintenance/floor3/starboard/aft) -"lgz" = ( -/obj/machinery/light/small/directional/north, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard/aft) "lgH" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 4 @@ -41427,6 +41270,14 @@ /obj/effect/turf_decal/trimline/blue/warning, /turf/open/floor/pod/dark, /area/station/maintenance/floor2/starboard/aft) +"lgT" = ( +/obj/effect/spawner/random/trash/garbage{ + spawn_loot_count = 3; + spawn_scatter_radius = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard/fore) "lgX" = ( /obj/effect/turf_decal/trimline/blue/line{ dir = 8 @@ -41460,6 +41311,16 @@ /obj/machinery/modular_computer/preset/command, /turf/open/floor/carpet/blue, /area/station/command/bridge) +"lho" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/structure/window/reinforced/tinted/spawner/directional/east, +/turf/open/floor/wood, +/area/station/commons/vacant_room/office) "lhp" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, /obj/machinery/meter, @@ -41496,18 +41357,6 @@ /obj/structure/table, /turf/open/floor/iron, /area/station/science/genetics) -"lhG" = ( -/obj/structure/table/wood, -/obj/machinery/computer/libraryconsole{ - dir = 1 - }, -/obj/effect/turf_decal/siding/wood/corner{ - dir = 1 - }, -/obj/structure/window/reinforced/spawner/directional/south, -/obj/structure/window/reinforced/spawner/directional/east, -/turf/open/floor/carpet/red, -/area/station/service/library) "lhH" = ( /obj/item/analyzer{ pixel_y = 4 @@ -41535,14 +41384,6 @@ }, /turf/open/floor/iron/dark, /area/station/security/courtroom) -"lhP" = ( -/obj/effect/turf_decal/trimline/blue/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server/upper) "lhT" = ( /obj/structure/lattice/catwalk, /obj/machinery/atmospherics/pipe/heat_exchanging/simple{ @@ -41557,6 +41398,11 @@ /obj/machinery/firealarm/directional/north, /turf/open/floor/iron/white, /area/station/science/lower) +"lhY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/blobstart, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard) "lhZ" = ( /obj/effect/turf_decal/trimline/yellow/warning{ dir = 8 @@ -41582,24 +41428,17 @@ /obj/machinery/flasher/directional/east, /turf/open/floor/iron/dark, /area/station/hallway/floor4/fore) -"lik" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/service/abandoned_gambling_den) "liq" = ( /obj/effect/turf_decal/trimline/blue/filled/corner{ dir = 8 }, /turf/open/floor/iron/white, /area/station/medical/medbay/central) -"liL" = ( +"liv" = ( +/obj/structure/ladder, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/floor3/starboard/aft) +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server/upper) "liQ" = ( /turf/closed/wall/r_wall, /area/station/command/heads_quarters/hop) @@ -41607,6 +41446,16 @@ /obj/structure/cable/multilayer/multiz, /turf/open/floor/plating, /area/station/maintenance/floor3/port/fore) +"liU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/medical/chemistry) "liX" = ( /obj/effect/turf_decal/tile/purple/half/contrasted{ dir = 4 @@ -41775,18 +41624,6 @@ dir = 8 }, /area/station/hallway/floor2/aft) -"llm" = ( -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/security{ - name = "The Red Door" - }, -/turf/open/floor/carpet/red, -/area/station/maintenance/floor3/port/aft) "lln" = ( /turf/closed/wall/r_wall, /area/station/science/ordnance/storage) @@ -41798,13 +41635,6 @@ /obj/effect/mapping_helpers/airlock/access/all/science/general, /turf/open/floor/iron/white, /area/station/science/circuits) -"llp" = ( -/obj/structure/flora/bush/sparsegrass/style_random, -/obj/structure/window/spawner/directional/south, -/obj/structure/window/spawner/directional/east, -/obj/structure/window/spawner/directional/north, -/turf/open/floor/grass, -/area/station/hallway/secondary/exit/departure_lounge) "llr" = ( /obj/effect/turf_decal/trimline/green/warning{ dir = 1 @@ -41818,6 +41648,14 @@ }, /turf/open/misc/sandy_dirt, /area/station/hallway/secondary/entry) +"llK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/broken/directional/south, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/pod, +/area/station/maintenance/floor4/starboard/aft) "llN" = ( /obj/structure/closet/emcloset, /obj/effect/turf_decal/trimline/purple/filled/line{ @@ -41867,11 +41705,6 @@ /obj/machinery/door/firedoor/border_only, /turf/open/floor/iron/kitchen, /area/station/service/kitchen/abandoned) -"lmb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/tracks, -/turf/open/floor/pod/dark, -/area/station/maintenance/floor4/starboard) "lme" = ( /obj/machinery/door/firedoor/heavy, /obj/machinery/door/airlock/public/glass{ @@ -41895,6 +41728,12 @@ 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 @@ -41956,17 +41795,6 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/service/bar) -"lmV" = ( -/obj/machinery/vending/cola/pwr_game, -/obj/effect/turf_decal/siding/wood, -/obj/structure/sign/poster/contraband/pwr_game/directional/north, -/turf/open/floor/iron/white, -/area/station/medical/break_room) -"lmW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/medical/abandoned) "lng" = ( /obj/machinery/teleport/station, /obj/machinery/status_display/evac/directional/north, @@ -42129,15 +41957,6 @@ }, /turf/open/floor/plating/airless, /area/station/solars/starboard/aft) -"lpe" = ( -/obj/item/storage/bag/plants/portaseeder, -/obj/item/plant_analyzer, -/obj/item/cultivator, -/obj/structure/rack, -/obj/item/vending_refill/hydroseeds, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/floor4/starboard) "lph" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/pod/dark, @@ -42167,13 +41986,6 @@ name = "lab floor" }, /area/station/science/genetics) -"lpB" = ( -/obj/machinery/modular_computer/preset/civilian{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/station/maintenance/floor2/starboard) "lpH" = ( /obj/structure/chair/comfy/carp{ dir = 1 @@ -42181,6 +41993,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet/neon/simple/pink/nodots, /area/station/maintenance/floor2/port/fore) +"lpM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/structure/electrified_grille, +/turf/open/floor/plating, +/area/station/ai_monitored/security/armory) "lpR" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 8 @@ -42253,12 +42071,6 @@ }, /turf/open/floor/iron/white, /area/station/medical/storage) -"lqD" = ( -/obj/item/food/deadmouse/moldy, -/obj/effect/turf_decal/tile/red/half, -/obj/structure/window/reinforced/tinted/frosted/spawner/directional/south, -/turf/open/floor/stone, -/area/station/maintenance/floor1/port) "lqE" = ( /obj/effect/turf_decal/siding/white/corner{ dir = 4 @@ -42320,6 +42132,11 @@ /obj/structure/curtain/cloth, /turf/open/floor/plating, /area/station/science/robotics/lab) +"lrK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/pod/light, +/area/station/maintenance/floor3/port/aft) "lrM" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/pod/light, @@ -42453,6 +42270,10 @@ }, /turf/open/floor/iron/white, /area/station/medical/medbay/central) +"ltl" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor2/starboard/fore) "ltn" = ( /obj/item/storage/toolbox/mechanical/old, /turf/open/floor/plating, @@ -42577,12 +42398,6 @@ /obj/machinery/light/directional/north, /turf/open/floor/iron/dark, /area/station/hallway/floor1/fore) -"luZ" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/contraband/landmine, -/turf/open/floor/engine, -/area/station/maintenance/floor4/starboard/aft) "lvm" = ( /obj/structure/table, /obj/item/assembly/igniter{ @@ -42656,13 +42471,6 @@ }, /turf/open/floor/wood/large, /area/station/security/prison/safe) -"lvG" = ( -/obj/structure/flora/bush/sparsegrass/style_random, -/obj/structure/window/spawner/directional/south, -/obj/structure/window/spawner/directional/north, -/obj/structure/window/spawner/directional/west, -/turf/open/floor/grass, -/area/station/hallway/secondary/exit/departure_lounge) "lvJ" = ( /obj/machinery/door/firedoor, /obj/structure/table/reinforced, @@ -42688,11 +42496,6 @@ "lvT" = ( /turf/closed/wall/r_wall, /area/station/security/evidence) -"lvW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron/dark/smooth_large, -/area/station/service/library/printer) "lvY" = ( /obj/structure/chair/office{ dir = 8 @@ -42730,6 +42533,21 @@ /obj/structure/extinguisher_cabinet/directional/west, /turf/open/floor/iron, /area/station/hallway/floor3/aft) +"lwD" = ( +/obj/machinery/light/directional/south, +/obj/effect/decal/cleanable/blood/footprints{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/maintenance/floor3/starboard/aft) +"lwK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard/aft) "lwP" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, @@ -42768,6 +42586,12 @@ }, /turf/open/floor/catwalk_floor, /area/station/maintenance/floor4/starboard) +"lxA" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/spawner/random/structure/crate_abandoned, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/maintenance/floor2/port/aft) "lxC" = ( /obj/effect/turf_decal/trimline/blue/line{ dir = 8 @@ -42783,14 +42607,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/hallway/floor2/fore) -"lxI" = ( -/obj/item/stack/tile/wood, -/obj/effect/decal/cleanable/dirt, -/obj/item/ammo_casing/c38{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/service/abandoned_gambling_den) "lxK" = ( /obj/effect/turf_decal/trimline/green/warning{ dir = 8 @@ -42818,14 +42634,6 @@ /obj/structure/sign/departments/medbay/alt/directional/south, /turf/open/floor/iron/dark/side, /area/station/hallway/floor2/aft) -"lxZ" = ( -/obj/effect/turf_decal/trimline/brown/warning{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/firecloset/full, -/turf/open/floor/pod/dark, -/area/station/maintenance/floor3/port/aft) "lyd" = ( /obj/effect/turf_decal/trimline/green/line, /obj/structure/disposalpipe/segment{ @@ -42833,6 +42641,20 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/service/bar) +"lym" = ( +/obj/effect/turf_decal/tile/red/diagonal_edge, +/obj/machinery/firealarm/directional/south, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/checkpoint/escape) +"lyn" = ( +/obj/machinery/airalarm/directional/south, +/obj/item/kirbyplants/random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/station/command/heads_quarters/hop) "lyv" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -42867,6 +42689,12 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/maintenance/disposal/incinerator) +"lyQ" = ( +/obj/structure/table/glass, +/obj/item/multitool, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/circuit/telecomms, +/area/station/tcommsat/server/upper) "lyR" = ( /obj/structure/window/reinforced/spawner/directional/south, /obj/structure/table, @@ -42915,21 +42743,12 @@ /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) +"lzT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/tracks, +/obj/effect/landmark/generic_maintenance_landmark, +/turf/open/floor/pod/dark, +/area/station/maintenance/floor4/starboard) "lzX" = ( /obj/effect/turf_decal/trimline/red/line, /obj/effect/turf_decal/trimline/white/warning, @@ -42967,22 +42786,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/checker, /area/station/cargo/miningdock) -"lAE" = ( -/obj/effect/turf_decal/tile/red/anticorner{ - dir = 1 - }, -/obj/structure/bed/dogbed{ - desc = "A comfy-looking mouse bed."; - name = "Robert's bed" - }, -/mob/living/basic/mouse{ - desc = "Your only friend in this place"; - name = "Robert" - }, -/obj/structure/window/reinforced/tinted/frosted/spawner/directional/north, -/obj/structure/window/reinforced/tinted/frosted/spawner/directional/west, -/turf/open/floor/stone, -/area/station/maintenance/floor1/port) "lAH" = ( /obj/structure/flora/bush/sparsegrass/style_random, /obj/item/stack/rods{ @@ -43003,9 +42806,31 @@ initial_gas_mix = "TEMP=2.7" }, /area/station/science/ordnance/bomb) +"lAR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/painting/library{ + pixel_y = 32 + }, +/turf/open/floor/pod/light, +/area/station/maintenance/floor3/starboard/aft) "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 @@ -43104,11 +42929,11 @@ }, /turf/open/floor/iron/white/small, /area/station/commons/fitness/recreation) -"lCg" = ( +"lBU" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/port) +/obj/item/stack/cable_coil/cut, +/turf/open/floor/plating, +/area/station/medical/abandoned) "lCh" = ( /obj/machinery/vending/cigarette, /obj/item/radio/intercom/directional/east, @@ -43149,21 +42974,10 @@ /obj/effect/spawner/random/structure/closet_maintenance, /turf/open/floor/pod/dark, /area/station/maintenance/floor2/port) -"lCO" = ( -/obj/effect/mapping_helpers/broken_floor, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/crate, -/turf/open/floor/plating, -/area/station/service/abandoned_gambling_den) "lCR" = ( /obj/effect/spawner/structure/window/reinforced/tinted, /turf/open/floor/plating, /area/station/maintenance/floor2/starboard) -"lCT" = ( -/obj/machinery/light/dim/directional/east, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor1/port/aft) "lCW" = ( /obj/machinery/light/dim/directional/east, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -43199,6 +43013,16 @@ }, /turf/open/floor/iron/dark, /area/station/hallway/secondary/exit/departure_lounge) +"lDv" = ( +/obj/effect/spawner/random/maintenance/two, +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/item/mop, +/obj/effect/spawner/random/engineering/flashlight, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard/fore) "lDD" = ( /obj/structure/rack, /obj/item/chair/plastic, @@ -43249,6 +43073,13 @@ /obj/effect/decal/cleanable/dirt, /turf/closed/wall, /area/station/medical/storage) +"lDU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/medical/abandoned) "lDW" = ( /obj/effect/turf_decal/trimline/green/filled/corner{ dir = 4 @@ -43270,6 +43101,15 @@ /obj/machinery/duct, /turf/open/floor/catwalk_floor, /area/station/maintenance/floor2/port) +"lEc" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/commons/storage/primary) "lEg" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -43304,12 +43144,6 @@ /obj/structure/cable, /turf/open/floor/eighties, /area/station/commons/dorms/room2) -"lEC" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) "lEJ" = ( /obj/machinery/light/directional/north, /obj/machinery/airalarm/directional/north, @@ -43382,6 +43216,11 @@ /obj/machinery/duct, /turf/open/floor/iron/showroomfloor, /area/station/service/kitchen/diner) +"lFI" = ( +/obj/effect/landmark/blobstart, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/engineering/lobby) "lFL" = ( /obj/effect/turf_decal/trimline/green/filled/corner{ dir = 4 @@ -43430,6 +43269,14 @@ dir = 1 }, /area/station/hallway/floor4/fore) +"lGl" = ( +/obj/effect/spawner/random/maintenance/two, +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard/fore) "lGo" = ( /obj/structure/railing{ dir = 4 @@ -43442,16 +43289,6 @@ }, /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, @@ -43561,6 +43398,13 @@ /obj/structure/cable, /turf/open/floor/catwalk_floor, /area/station/maintenance/floor1/starboard/fore) +"lIl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/cargo/warehouse) "lIm" = ( /obj/structure/cable, /obj/effect/turf_decal/trimline/white/corner, @@ -43615,12 +43459,19 @@ }, /turf/open/floor/iron/white, /area/station/science/lobby) -"lIP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +"lIO" = ( +/obj/effect/turf_decal/tile/green/half{ + dir = 4 + }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor1/port/aft) +/obj/machinery/door/airlock{ + name = "Escape Pod B" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/exit/escape_pod) "lIS" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -43692,18 +43543,6 @@ dir = 1 }, /area/station/service/chapel) -"lJE" = ( -/obj/item/trash/semki/healthy, -/obj/item/trash/spacers_sidekick{ - pixel_x = -2 - }, -/obj/item/trash/syndi_cakes, -/obj/effect/decal/cleanable/ants, -/obj/effect/decal/cleanable/garbage, -/obj/effect/decal/cleanable/food/flour, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor1/port/aft) "lJG" = ( /obj/structure/window/spawner/directional/south, /obj/structure/rack, @@ -43760,12 +43599,11 @@ /obj/structure/cable/multilayer/multiz, /turf/open/floor/plating, /area/station/service/kitchen/abandoned) -"lKp" = ( -/obj/machinery/atmospherics/components/trinary/mixer, -/obj/effect/turf_decal/box, +"lKr" = ( +/obj/machinery/light/directional/east, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/floor2/port) +/turf/open/floor/pod/light, +/area/station/maintenance/floor1/port/aft) "lKy" = ( /obj/effect/turf_decal/delivery, /obj/machinery/door/firedoor/heavy, @@ -43808,19 +43646,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/circuit/green, /area/station/science/robotics/mechbay) -"lLm" = ( -/obj/effect/turf_decal/caution/stand_clear/white{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/white/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard/aft) "lLp" = ( /obj/machinery/camera/motion/directional/north{ c_tag = "Minisat - Port" @@ -43838,6 +43663,13 @@ }, /turf/open/floor/engine, /area/station/engineering/atmos/hfr_room) +"lLH" = ( +/obj/effect/turf_decal/tile/red/half{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted/frosted/spawner/directional/west, +/turf/open/floor/stone, +/area/station/maintenance/floor1/port) "lLO" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 8 @@ -43915,6 +43747,11 @@ /obj/machinery/light/cold/no_nightlight/directional/south, /turf/open/floor/iron, /area/station/hallway/floor3/fore) +"lMZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/marker_beacon/ten, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard/fore) "lNh" = ( /obj/effect/turf_decal/tile/blue/half/contrasted{ dir = 8 @@ -44066,14 +43903,6 @@ /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{ @@ -44119,11 +43948,6 @@ /obj/machinery/light/broken/directional/north, /turf/open/misc/dirt/jungle, /area/station/service/hydroponics/garden/abandoned) -"lPl" = ( -/obj/structure/reagent_dispensers/plumbed/fuel, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard/aft) "lPs" = ( /obj/effect/turf_decal/delivery, /obj/structure/cable, @@ -44320,14 +44144,6 @@ }, /turf/open/floor/iron, /area/station/commons/fitness/recreation) -"lRc" = ( -/obj/item/reagent_containers/dropper, -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard/fore) "lRh" = ( /obj/structure/railing{ dir = 4 @@ -44377,6 +44193,20 @@ /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, @@ -44408,9 +44238,19 @@ }, /turf/open/floor/carpet, /area/station/command/heads_quarters/captain) +"lRU" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/floor1/port) "lRY" = ( /turf/closed/wall, /area/station/commons/vacant_room/office) +"lSp" = ( +/obj/structure/barricade/sandbags, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/port) "lSs" = ( /obj/structure/disposalpipe/trunk{ dir = 1 @@ -44452,13 +44292,6 @@ }, /turf/open/floor/iron/dark, /area/station/ai_monitored/turret_protected/ai_upload) -"lSJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/cargo/warehouse) "lSP" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -44487,6 +44320,14 @@ }, /turf/open/floor/plating, /area/station/engineering/atmos/hfr_room) +"lTe" = ( +/obj/effect/turf_decal/arrows/white{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/floor2/port/aft) "lTl" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 6 @@ -44509,6 +44350,13 @@ }, /turf/open/floor/pod/dark, /area/station/maintenance/floor3/starboard) +"lTF" = ( +/obj/structure/bed/double, +/obj/item/bedsheet/cosmos/double, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood/large, +/area/station/maintenance/floor4/starboard/aft) "lTN" = ( /obj/machinery/door/airlock/hatch{ name = "Maintenance Bulkhead" @@ -44550,6 +44398,13 @@ }, /turf/open/floor/iron/dark, /area/station/hallway/floor1/fore) +"lUs" = ( +/obj/effect/turf_decal/bot, +/obj/effect/spawner/random/structure/crate, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/iron/smooth, +/area/station/cargo/warehouse) "lUu" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -44563,16 +44418,20 @@ dir = 4 }, /area/station/medical/chemistry) -"lUY" = ( -/obj/effect/turf_decal/bot, -/obj/effect/spawner/random/structure/crate, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/cargo/warehouse) "lUZ" = ( /obj/structure/cable, /turf/open/floor/catwalk_floor, /area/station/hallway/floor3/fore) +"lVc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 1 + }, +/turf/open/floor/engine, +/area/station/maintenance/floor4/starboard/aft) "lVf" = ( /obj/structure/disposalpipe/junction/flip, /turf/open/floor/iron, @@ -44599,11 +44458,14 @@ dir = 4 }, /area/station/hallway/floor2/fore) -"lVq" = ( -/obj/effect/spawner/random/trash/graffiti, +"lVG" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor3/starboard/aft) +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/station/service/abandoned_gambling_den) "lVP" = ( /obj/machinery/door/airlock/security/glass{ name = "Third Deck Outpost" @@ -44627,11 +44489,6 @@ }, /turf/open/floor/iron/white, /area/station/science/ordnance/storage) -"lVV" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard/fore) "lVW" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -44659,11 +44516,14 @@ }, /turf/open/floor/iron, /area/station/cargo/storage) -"lWm" = ( -/obj/structure/window/reinforced/tinted/frosted/spawner/directional/east, -/obj/structure/window/reinforced/tinted/frosted/spawner/directional/south, -/turf/open/openspace, -/area/station/maintenance/floor4/port/aft) +"lWu" = ( +/obj/effect/turf_decal/trimline/blue/corner, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server/upper) "lWA" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 9 @@ -44680,23 +44540,12 @@ /obj/structure/cable, /turf/open/floor/catwalk_floor, /area/station/maintenance/floor1/port) -"lWR" = ( -/obj/effect/turf_decal/stripes{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/airalarm/directional/south, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/floor2/starboard) -"lXj" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +"lWT" = ( +/obj/effect/turf_decal/bot, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/floor4/starboard) +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/iron/smooth, +/area/station/cargo/warehouse) "lXm" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -44744,6 +44593,16 @@ }, /turf/open/floor/iron/white, /area/station/medical/pharmacy) +"lXC" = ( +/obj/effect/turf_decal/tile/green/anticorner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/vending/snack/green, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/hallway/secondary/exit/escape_pod) "lXK" = ( /obj/effect/turf_decal/tile/bar/opposingcorners, /obj/item/radio/intercom/directional/west, @@ -44832,6 +44691,10 @@ /obj/item/pen, /turf/open/floor/carpet/red, /area/station/service/library/lounge) +"lYg" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/library/printer) "lYr" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 8 @@ -44862,16 +44725,6 @@ "lYx" = ( /turf/closed/wall/r_wall, /area/station/science/ordnance/freezerchamber) -"lYD" = ( -/obj/effect/turf_decal/trimline/green/warning{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/dark, -/area/station/maintenance/floor3/port) "lYL" = ( /obj/machinery/door/airlock/hatch{ name = "Maintenance Hatch" @@ -44909,10 +44762,6 @@ /obj/item/kirbyplants/random, /turf/open/floor/wood, /area/station/medical/psychology) -"lYX" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet/blue, -/area/station/maintenance/floor3/port/aft) "lYY" = ( /obj/effect/turf_decal/tile/blue/half, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -44964,12 +44813,6 @@ /obj/machinery/door/firedoor, /turf/open/floor/iron/white, /area/station/medical/abandoned) -"maq" = ( -/obj/machinery/light_switch/directional/east, -/obj/effect/turf_decal/delivery, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/floor2/port/aft) "mar" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -44982,6 +44825,12 @@ "mau" = ( /turf/closed/wall/r_wall, /area/station/security/lockers) +"maH" = ( +/obj/effect/turf_decal/tile/green/half, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side, +/area/station/hallway/secondary/exit/escape_pod) "maL" = ( /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /obj/machinery/door/airlock/hatch{ @@ -45096,14 +44945,11 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/station/commons/vacant_room/commissary) -"mbQ" = ( -/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/decal/cleanable/dirt, -/turf/open/floor/iron/white, -/area/station/medical/abandoned) +"mbP" = ( +/obj/structure/window/reinforced/tinted/frosted/spawner/directional/south, +/obj/structure/window/reinforced/tinted/frosted/spawner/directional/west, +/turf/open/openspace, +/area/station/maintenance/floor4/port/aft) "mbS" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2, /obj/effect/spawner/structure/window/hollow/reinforced/plasma/middle, @@ -45164,13 +45010,6 @@ }, /turf/open/floor/iron/dark, /area/station/science/ordnance/testlab) -"mcu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/oil, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/pod/light, -/area/station/maintenance/floor1/port/fore) "mcB" = ( /obj/effect/turf_decal/trimline/green/filled/warning{ dir = 1 @@ -45247,12 +45086,6 @@ /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) @@ -45324,12 +45157,6 @@ "mek" = ( /turf/closed/wall, /area/station/security/prison/shower) -"mel" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/suit/hazardvest, -/obj/structure/rack, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/port/fore) "mem" = ( /obj/machinery/shower/directional/east, /turf/open/floor/noslip, @@ -45396,6 +45223,23 @@ /obj/effect/mapping_helpers/airlock/access/all/security/general, /turf/open/floor/iron/dark, /area/station/security/evidence) +"mff" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/broken/directional/east, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/rack, +/obj/item/stack/sheet/iron{ + amount = 30 + }, +/obj/item/stack/sheet/glass{ + amount = 30 + }, +/obj/item/stack/package_wrap, +/obj/item/flashlight/flare, +/turf/open/floor/pod, +/area/station/maintenance/floor4/starboard/aft) "mfk" = ( /obj/effect/turf_decal/siding/wood/corner{ dir = 8 @@ -45428,14 +45272,6 @@ /obj/item/reagent_containers/cup/rag, /turf/open/floor/iron/dark/smooth_large, /area/station/service/bar) -"mfQ" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/door/window/left/directional/south{ - name = "Storage" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard/aft) "mfR" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -45489,13 +45325,6 @@ /obj/structure/flora/bush/sparsegrass/style_random, /turf/open/floor/grass, /area/station/service/library/garden) -"mgq" = ( -/obj/effect/turf_decal/trimline/green/warning, -/obj/effect/turf_decal/stripes, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/dark, -/area/station/maintenance/floor2/starboard) "mgx" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -45559,13 +45388,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/dark, /area/station/hallway/floor2/fore) -"mhh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/camera/autoname/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/floor4/starboard/aft) "mhl" = ( /obj/structure/table, /obj/structure/cable, @@ -45589,6 +45411,13 @@ /obj/structure/sign/poster/official/random/directional/south, /turf/open/floor/iron/dark/side, /area/station/hallway/floor1/aft) +"mhA" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/dark, +/area/station/maintenance/floor3/port/aft) "mhC" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table, @@ -45608,6 +45437,14 @@ }, /turf/open/floor/carpet/royalblack, /area/station/service/kitchen/diner) +"mhI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/pod, +/area/station/maintenance/floor4/starboard/aft) "mhO" = ( /obj/structure/closet/secure_closet/freezer/empty, /turf/open/floor/iron/kitchen, @@ -45651,13 +45488,6 @@ dir = 1 }, /area/station/hallway/floor1/aft) -"mif" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/floor4/starboard) "mil" = ( /obj/structure/table, /obj/effect/turf_decal/tile/purple/fourcorners, @@ -45697,20 +45527,6 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/plating, /area/station/security/eva) -"mjd" = ( -/obj/machinery/camera/motion/directional/east{ - c_tag = "MiniSat Foyer"; - network = list("minisat") - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat) -"mjj" = ( -/obj/structure/sign/poster/official/do_not_question/directional/south, -/obj/effect/turf_decal/tile/dark_red/fourcorners, -/turf/open/floor/iron, -/area/station/security/brig) "mjv" = ( /obj/machinery/door/airlock/engineering{ name = "Telecomms Storage" @@ -45726,6 +45542,14 @@ }, /turf/open/floor/iron/white, /area/station/medical/storage) +"mjL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/small/directional/south, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/pod, +/area/station/maintenance/floor4/starboard/aft) "mjP" = ( /obj/structure/cable/multilayer/multiz, /obj/structure/cable, @@ -45873,6 +45697,17 @@ }, /turf/open/floor/iron/white, /area/station/science/lab) +"mlM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/green/half{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sign/poster/random/directional/north, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/hallway/secondary/exit/escape_pod) "mlN" = ( /obj/effect/mapping_helpers/airlock/access/any/security/armory, /obj/machinery/door/airlock/security/glass{ @@ -45932,12 +45767,6 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/ai_monitored/turret_protected/ai) -"mms" = ( -/obj/machinery/space_heater/improvised_chem_heater, -/obj/effect/turf_decal/tile/blue/half, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/white/smooth_edge, -/area/station/medical/abandoned) "mmv" = ( /obj/machinery/door/airlock/public/glass{ name = "Public Mining & Aux Base" @@ -45972,6 +45801,18 @@ dir = 4 }, /area/station/security/checkpoint) +"mmO" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/visible/layer4{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/maintenance/disposal/incinerator) "mmR" = ( /obj/structure/chair/sofa/bench/right{ dir = 4 @@ -46108,12 +45949,6 @@ "mnR" = ( /turf/open/floor/iron, /area/station/cargo/storage) -"mnY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/station/service/abandoned_gambling_den) "moe" = ( /obj/structure/table, /obj/item/pestle, @@ -46203,10 +46038,6 @@ /obj/machinery/light/small/directional/west, /turf/open/floor/catwalk_floor, /area/station/maintenance/floor1/port/aft) -"mpK" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod, -/area/station/maintenance/floor4/port/fore) "mpL" = ( /obj/structure/table/wood, /obj/item/folder/blue, @@ -46362,11 +46193,6 @@ /obj/item/radio/intercom/directional/north, /turf/open/floor/iron/white, /area/station/science/lower) -"mrq" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth_corner, -/area/station/maintenance/floor2/starboard) "mrs" = ( /obj/structure/grille, /obj/item/shard, @@ -46451,16 +46277,6 @@ /obj/effect/spawner/random/structure/tank_holder, /turf/open/floor/pod/light, /area/station/maintenance/floor4/port) -"msu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/green/half{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/station/hallway/secondary/exit/escape_pod) "msv" = ( /obj/structure/railing, /obj/structure/cable, @@ -46479,6 +46295,17 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/pod/light, /area/station/maintenance/floor1/port/aft) +"msS" = ( +/obj/structure/sign/poster/official/plasma_effects/directional/east, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/suit_storage_unit/medical, +/turf/open/floor/iron/white, +/area/station/medical/storage) +"msT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/bag/trash, +/turf/open/floor/pod/light, +/area/station/maintenance/floor2/port/aft) "msW" = ( /obj/item/storage/box/chemimp{ pixel_x = 6 @@ -46666,6 +46493,12 @@ /obj/machinery/light/dim/directional/east, /turf/open/floor/pod/dark, /area/station/maintenance/floor2/starboard/aft) +"muQ" = ( +/obj/structure/rack, +/obj/item/storage/box/lights/tubes, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor1/port/aft) "mve" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -46694,17 +46527,6 @@ }, /turf/open/floor/iron/white, /area/station/medical/medbay/lobby) -"mvs" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/tracks{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/engine, -/area/station/maintenance/floor4/starboard/aft) "mvw" = ( /turf/open/floor/iron/dark/corner{ dir = 4 @@ -46798,22 +46620,22 @@ /obj/effect/turf_decal/tile/purple/opposingcorners, /turf/open/floor/iron/white, /area/station/command/heads_quarters/rd) +"mwN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/white, +/area/station/maintenance/floor3/starboard/aft) "mwO" = ( /obj/structure/table/wood, /obj/item/toy/crayon/spraycan, /obj/item/toy/crayon/spraycan, /turf/open/floor/wood/large, /area/station/service/library/lounge) -"mwR" = ( -/obj/structure/sign/poster/contraband/lusty_xenomorph/directional/west, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/port) -"mwZ" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/iron/smooth, -/area/station/cargo/warehouse) +"mxb" = ( +/obj/structure/table/wood, +/obj/item/folder/blue, +/obj/item/stamp/head/captain, +/turf/open/floor/carpet, +/area/station/command/heads_quarters/captain) "mxd" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -46837,10 +46659,6 @@ dir = 9 }, /area/station/hallway/secondary/exit) -"mxC" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/cargo/warehouse) "mxD" = ( /obj/machinery/portable_atmospherics/canister/air, /obj/effect/turf_decal/tile/red/opposingcorners{ @@ -46859,6 +46677,16 @@ }, /turf/open/floor/plating, /area/station/medical/abandoned) +"mxR" = ( +/obj/effect/turf_decal/trimline/green/warning{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/dark, +/area/station/maintenance/floor3/port) "mxT" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -46867,16 +46695,20 @@ dir = 4 }, /area/station/hallway/secondary/exit/departure_lounge) -"mym" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer2{ - dir = 10 - }, -/obj/structure/window/reinforced/plasma/spawner/directional/south, -/turf/open/floor/engine/airless, -/area/station/science/ordnance/freezerchamber) "myr" = ( /turf/open/floor/iron/textured_large, /area/station/hallway/secondary/entry) +"myw" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/table, +/obj/item/stack/cable_coil, +/obj/item/screwdriver, +/obj/effect/decal/cleanable/dirt, +/obj/item/weldingtool/largetank, +/turf/open/floor/iron, +/area/station/cargo/warehouse) "myx" = ( /obj/structure/chair/stool/bamboo, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -46955,6 +46787,11 @@ }, /turf/open/floor/iron/dark, /area/station/hallway/secondary/entry) +"mze" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/tracks, +/turf/open/floor/pod/dark, +/area/station/maintenance/floor4/starboard) "mzf" = ( /obj/machinery/light/small/directional/north, /turf/open/floor/engine/n2, @@ -46986,6 +46823,11 @@ dir = 4 }, /area/station/command/bridge) +"mzz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/built/directional/south, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/cargo/warehouse) "mzA" = ( /obj/structure/railing{ dir = 4 @@ -47064,6 +46906,13 @@ }, /turf/open/floor/wood, /area/station/commons/dorms/apartment2) +"mBc" = ( +/obj/effect/turf_decal/trimline/purple/warning, +/obj/machinery/airalarm/directional/north, +/obj/effect/spawner/random/structure/crate, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/dark, +/area/station/maintenance/floor2/starboard) "mBg" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -47080,6 +46929,17 @@ initial_gas_mix = "TEMP=2.7" }, /area/station/science/ordnance/bomb) +"mBr" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/warning, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor2/starboard) "mBt" = ( /obj/structure/rack, /obj/item/paper/pamphlet/gateway, @@ -47129,6 +46989,17 @@ /obj/structure/cable, /turf/open/floor/plating/airless, /area/station/solars/starboard/fore) +"mCx" = ( +/obj/effect/turf_decal/trimline/green/warning{ + dir = 8 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/spawner/random/engineering/canister, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/dark, +/area/station/maintenance/floor2/starboard) "mCD" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 8 @@ -47203,6 +47074,11 @@ /obj/machinery/light/directional/west, /turf/open/floor/iron/dark, /area/station/security/brig) +"mCX" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine, +/area/station/maintenance/floor4/starboard/aft) "mDd" = ( /obj/effect/spawner/random/engineering/tank, /obj/effect/turf_decal/trimline/dark_blue/end{ @@ -47249,11 +47125,6 @@ /obj/effect/turf_decal/tile/red/fourcorners, /turf/open/floor/iron/dark, /area/station/security/office) -"mDR" = ( -/obj/structure/table/reinforced, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor1/port/aft) "mDV" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 @@ -47342,6 +47213,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/command/bridge) +"mEZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/reinforced, +/obj/item/clothing/suit/toggle/labcoat, +/turf/open/floor/pod/dark, +/area/station/maintenance/floor2/starboard/aft) "mFp" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 @@ -47443,6 +47320,13 @@ /obj/machinery/status_display/ai/directional/north, /turf/open/floor/iron/white, /area/station/science/lower) +"mGo" = ( +/obj/machinery/light/dim/directional/south, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/sign/poster/contraband/random/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/port) "mGp" = ( /obj/effect/spawner/random/trash/garbage{ spawn_scatter_radius = 1 @@ -47458,12 +47342,6 @@ /obj/structure/flora/bush/sparsegrass/style_random, /turf/open/floor/grass, /area/station/science/genetics) -"mGy" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/mining, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/engine, -/area/station/maintenance/floor4/starboard/aft) "mGF" = ( /obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ dir = 4 @@ -47479,6 +47357,11 @@ }, /turf/open/floor/iron/white, /area/station/science/ordnance/storage) +"mGI" = ( +/obj/effect/spawner/random/trash/hobo_squat, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/medical/abandoned) "mGK" = ( /obj/effect/turf_decal/tile/purple/opposingcorners, /obj/structure/disposalpipe/segment{ @@ -47517,6 +47400,11 @@ "mHa" = ( /turf/closed/wall, /area/station/commons/fitness/recreation/entertainment) +"mHb" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor1/port/fore) "mHc" = ( /obj/structure/rack, /obj/item/storage/briefcase{ @@ -47534,11 +47422,6 @@ /obj/item/radio/intercom/directional/north, /turf/open/floor/wood/parquet, /area/station/service/lawoffice) -"mHk" = ( -/obj/machinery/power/emitter, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/textured_large, -/area/station/engineering/lobby) "mHm" = ( /obj/structure/chair/office{ dir = 1 @@ -47564,6 +47447,14 @@ /obj/machinery/duct, /turf/open/floor/iron, /area/station/service/janitor) +"mHy" = ( +/obj/effect/turf_decal/trimline/blue/line{ + dir = 4 + }, +/obj/machinery/light/small/blacklight/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server/upper) "mHz" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/simple, /obj/machinery/light/directional/west, @@ -47593,6 +47484,11 @@ /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, @@ -47617,6 +47513,11 @@ }, /turf/open/floor/iron/white, /area/station/science/lobby) +"mIt" = ( +/obj/effect/spawner/random/trash/graffiti, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor3/starboard/aft) "mIA" = ( /obj/machinery/door/firedoor, /obj/machinery/door/poddoor{ @@ -47653,15 +47554,6 @@ /obj/structure/ladder, /turf/open/floor/catwalk_floor, /area/station/hallway/floor3/aft) -"mIQ" = ( -/obj/machinery/computer{ - desc = "Might have worked twenty years ago."; - dir = 8; - name = "Bluescreened Weapons System" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/mineral/plastitanium/red, -/area/station/maintenance/floor4/starboard/aft) "mIV" = ( /obj/machinery/computer/security/telescreen{ desc = "Used for the Auxiliary Mining Base."; @@ -47694,17 +47586,17 @@ }, /turf/open/floor/carpet, /area/station/command/heads_quarters/captain) -"mJc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/moisture_trap, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/port/aft) "mJg" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white/side{ dir = 8 }, /area/station/hallway/floor2/fore) +"mJi" = ( +/obj/item/stack/cable_coil/cut, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/dark, +/area/station/maintenance/floor2/starboard) "mJt" = ( /obj/machinery/airalarm/directional/east, /turf/open/floor/iron/smooth, @@ -47771,13 +47663,6 @@ /obj/machinery/light/directional/west, /turf/open/floor/iron, /area/station/commons/fitness/recreation) -"mKp" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer2{ - dir = 6 - }, -/obj/structure/window/reinforced/plasma/spawner/directional/south, -/turf/open/floor/engine/airless, -/area/station/science/ordnance/freezerchamber) "mKs" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/preopen{ @@ -47857,18 +47742,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark/textured, /area/station/commons/fitness) -"mLp" = ( -/obj/machinery/door/firedoor, -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/north, -/turf/open/floor/catwalk_floor/iron_dark, -/area/station/hallway/secondary/exit/escape_pod) "mLq" = ( /obj/effect/turf_decal/stripes{ dir = 1 @@ -47879,6 +47752,13 @@ dir = 1 }, /area/station/cargo/drone_bay) +"mLG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/delivery, +/obj/item/stack/sheet/cloth/five, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/maintenance/floor2/port/aft) "mLH" = ( /obj/structure/closet/firecloset/full, /turf/open/floor/pod/light, @@ -47892,6 +47772,14 @@ }, /turf/open/floor/iron, /area/station/engineering/lobby) +"mLL" = ( +/obj/effect/turf_decal/trimline/red/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard/aft) "mLO" = ( /obj/machinery/camera/autoname/directional/north, /obj/structure/sign/painting/library{ @@ -47980,10 +47868,6 @@ "mMq" = ( /turf/open/floor/engine, /area/station/engineering/supermatter) -"mMr" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) "mMt" = ( /turf/open/floor/iron/dark/corner{ dir = 8 @@ -48032,11 +47916,13 @@ /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/iron/smooth, /area/station/cargo/warehouse) -"mMO" = ( -/obj/effect/landmark/blobstart, +"mMW" = ( +/obj/effect/turf_decal/trimline/green/warning{ + dir = 1 + }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/engineering/lobby) +/turf/open/floor/pod/light, +/area/station/maintenance/floor2/starboard) "mNb" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 4 @@ -48065,6 +47951,21 @@ /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) +"mNx" = ( +/obj/item/storage/pill_bottle, +/obj/effect/spawner/random/trash/graffiti{ + pixel_x = -32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/light/colour_cycle/dancefloor_a, +/area/station/medical/abandoned) "mNT" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 4 @@ -48113,6 +48014,11 @@ dir = 1 }, /area/station/hallway/secondary/entry) +"mOA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/grille, +/turf/open/floor/plating, +/area/station/maintenance/floor2/port/aft) "mOH" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -48192,6 +48098,21 @@ }, /turf/open/floor/iron/dark, /area/station/ai_monitored/turret_protected/ai_upload_foyer) +"mPr" = ( +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/door/airlock/hatch{ + name = "Maintenance Access" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/station/maintenance/floor3/port/aft) "mPv" = ( /obj/effect/turf_decal/siding/wood{ dir = 9 @@ -48267,11 +48188,6 @@ }, /turf/open/floor/iron/dark, /area/station/hallway/floor1/fore) -"mPZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/crate, -/turf/open/floor/pod/light, -/area/station/maintenance/floor3/port/aft) "mQd" = ( /obj/item/stack/cable_coil/five, /turf/open/floor/pod/light, @@ -48352,6 +48268,13 @@ /obj/structure/cable, /turf/open/floor/pod/light, /area/station/maintenance/floor1/starboard/fore) +"mRp" = ( +/obj/effect/turf_decal/trimline/red/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard/aft) "mRq" = ( /turf/open/misc/dirt/jungle, /area/station/service/hydroponics/garden/abandoned) @@ -48359,17 +48282,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/cargo/miningdock) -"mRx" = ( -/obj/structure/window/reinforced/spawner/directional/south, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/white/line{ - dir = 9 - }, -/obj/machinery/light/directional/east, -/turf/open/floor/iron/large, -/area/station/command/gateway) "mRI" = ( /obj/effect/spawner/random/structure/grille, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -48383,11 +48295,6 @@ /obj/structure/disposalpipe/trunk, /turf/open/floor/iron/white, /area/station/medical/virology) -"mSa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate/trashcart/filled, -/turf/open/floor/pod/light, -/area/station/maintenance/floor3/starboard/aft) "mSe" = ( /obj/structure/closet/firecloset, /obj/machinery/light/dim/directional/north, @@ -48402,6 +48309,20 @@ /obj/item/knife/shiv, /turf/open/floor/iron, /area/station/maintenance/floor4/port/fore) +"mSo" = ( +/obj/structure/chair/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/green, +/area/station/service/abandoned_gambling_den) +"mSr" = ( +/obj/machinery/computer/slot_machine, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/green, +/area/station/service/abandoned_gambling_den) "mSG" = ( /turf/closed/wall/r_wall, /area/station/science/ordnance/burnchamber) @@ -48503,6 +48424,15 @@ }, /turf/open/floor/iron/dark, /area/station/hallway/floor2/aft) +"mTJ" = ( +/obj/structure/grille/broken, +/obj/effect/turf_decal/trimline/red/line{ + dir = 5 + }, +/obj/effect/spawner/random/contraband/permabrig_weapon, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard/aft) "mTK" = ( /obj/structure/cable, /obj/effect/turf_decal/trimline/red/filled/line{ @@ -48591,12 +48521,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/station/hallway/floor3/aft) -"mUF" = ( -/obj/structure/chair/office/light, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/floor2/port/aft) "mUJ" = ( /obj/structure/table, /obj/item/stack/cable_coil, @@ -48649,6 +48573,14 @@ }, /turf/open/floor/iron/dark/side, /area/station/hallway/floor4/fore) +"mVx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/chem_master, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/medical/chemistry) "mVy" = ( /obj/structure/closet/emcloset/anchored, /turf/open/floor/plating, @@ -48755,6 +48687,13 @@ }, /turf/open/openspace, /area/station/maintenance/floor2/port) +"mWE" = ( +/obj/effect/spawner/random/entertainment/arcade{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/station/maintenance/floor2/starboard) "mWH" = ( /obj/effect/turf_decal/stripes{ dir = 4 @@ -48846,24 +48785,10 @@ }, /turf/open/floor/iron/white, /area/station/security/medical) -"mYg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat) "mYh" = ( /obj/machinery/shower/directional/east, /turf/open/floor/catwalk_floor/iron_dark, /area/station/engineering/atmos/office) -"mYo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark/textured_edge{ - dir = 8 - }, -/area/station/medical/chemistry) "mYp" = ( /obj/effect/turf_decal/tile/yellow/fourcorners, /obj/item/radio/intercom/prison/directional/north, @@ -48899,11 +48824,15 @@ }, /turf/open/floor/pod/dark, /area/station/maintenance/floor4/starboard) -"mYK" = ( -/obj/machinery/door/firedoor, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/white, -/area/station/medical/abandoned) +"mYG" = ( +/obj/structure/window/reinforced/tinted/spawner/directional/north, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/structure/punching_bag, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark, +/area/station/hallway/floor2/fore) "mYM" = ( /obj/structure/transit_tube/curved/flipped{ dir = 4 @@ -48913,6 +48842,12 @@ "mYN" = ( /turf/closed/wall, /area/station/command/heads_quarters/cmo) +"mYQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/power/port_gen/pacman, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/port/fore) "mYV" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -48973,6 +48908,10 @@ /obj/effect/landmark/start/botanist, /turf/open/floor/iron, /area/station/service/hydroponics) +"mZF" = ( +/obj/structure/sign/poster/contraband/eat/directional/west, +/turf/open/floor/carpet/royalblue, +/area/station/medical/break_room) "mZH" = ( /obj/effect/turf_decal/tile/red/half, /obj/structure/disposalpipe/segment{ @@ -49010,17 +48949,6 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/station/science/ordnance/testlab) -"mZZ" = ( -/obj/machinery/power/emitter, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/red/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/textured_large, -/area/station/engineering/lobby) "nag" = ( /obj/machinery/door/firedoor/heavy, /obj/structure/table/reinforced, @@ -49268,17 +49196,6 @@ }, /turf/open/floor/iron/dark, /area/station/hallway/floor1/aft) -"ndL" = ( -/obj/effect/turf_decal/trimline/green/warning{ - dir = 1 - }, -/obj/effect/turf_decal/stripes{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/dim/directional/south, -/turf/open/floor/pod/dark, -/area/station/maintenance/floor2/starboard) "ndR" = ( /obj/machinery/door/airlock/engineering{ name = "Chief Engineer's Quarters" @@ -49357,13 +49274,6 @@ name = "boxing ring" }, /area/station/commons/fitness) -"neJ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/floor4/starboard) "neL" = ( /obj/structure/disposalpipe/segment{ dir = 2 @@ -49425,6 +49335,12 @@ /obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, /turf/open/space/basic, /area/space/nearstation) +"nfE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plating, +/area/station/maintenance/floor4/starboard/aft) "nfJ" = ( /obj/structure/cable, /obj/machinery/holopad, @@ -49452,14 +49368,6 @@ dir = 6 }, /area/station/hallway/floor4/fore) -"ngf" = ( -/obj/structure/railing, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard/fore) "ngg" = ( /obj/machinery/airalarm/directional/south, /obj/effect/turf_decal/tile/blue/fourcorners, @@ -49509,6 +49417,15 @@ name = "lab floor" }, /area/station/science/genetics) +"ngz" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/smooth_half{ + dir = 1 + }, +/area/station/maintenance/floor2/starboard) "ngD" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2{ dir = 8 @@ -49928,6 +49845,16 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/catwalk_floor, /area/station/hallway/floor4/aft) +"nkK" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/window/reinforced/tinted/spawner/directional/west, +/turf/open/floor/wood, +/area/station/commons/vacant_room/office) "nkM" = ( /obj/machinery/light/directional/north, /turf/open/floor/iron/dark/side{ @@ -49938,6 +49865,11 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/dark, /area/station/hallway/floor3/aft) +"nkU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/trashcart, +/turf/open/floor/pod/light, +/area/station/maintenance/floor3/starboard/aft) "nkY" = ( /obj/machinery/light/directional/west, /obj/structure/chair/sofa/corp/left{ @@ -49989,17 +49921,6 @@ /obj/machinery/camera/autoname/directional/east, /turf/open/floor/iron, /area/station/engineering/lobby) -"nlo" = ( -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/floor2/starboard) "nlu" = ( /obj/structure/disposalpipe/segment{ dir = 9 @@ -50074,12 +49995,14 @@ }, /turf/open/floor/iron/dark, /area/station/science/ordnance/testlab) -"nmq" = ( +"nmn" = ( /obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/port) +"nmu" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/tank_holder, /turf/open/floor/pod/light, -/area/station/maintenance/floor2/port/aft) +/area/station/maintenance/floor3/port/aft) "nmw" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -50107,6 +50030,17 @@ /obj/item/shard, /turf/open/floor/catwalk_floor, /area/station/maintenance/floor2/starboard) +"nmM" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/flashlight/lamp{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/effect/spawner/random/entertainment/coin, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/west, +/turf/open/floor/carpet/black, +/area/station/hallway/secondary/service) "nmV" = ( /turf/open/floor/iron/dark, /area/station/ai_monitored/turret_protected/aisat/hallway) @@ -50117,28 +50051,6 @@ }, /turf/open/floor/iron, /area/station/engineering/atmos/pumproom) -"nnc" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/white, -/area/station/medical/abandoned) -"nne" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/red/line, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/pod/light, -/area/station/maintenance/floor3/port/aft) -"nnj" = ( -/obj/effect/spawner/random/trash/garbage{ - spawn_loot_count = 3; - spawn_scatter_radius = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard/fore) "nno" = ( /obj/effect/turf_decal/tile/blue/anticorner/contrasted{ dir = 8 @@ -50163,6 +50075,13 @@ }, /turf/open/floor/iron/white, /area/station/medical/medbay/lobby) +"nnB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/skillchip/wine_taster, +/turf/open/floor/wood, +/area/station/maintenance/floor3/starboard/aft) "nnJ" = ( /obj/structure/filingcabinet, /turf/open/floor/iron/dark/smooth_large, @@ -50183,6 +50102,15 @@ /obj/effect/spawner/random/trash/mess, /turf/open/floor/pod/light, /area/station/maintenance/floor1/starboard/fore) +"nnX" = ( +/obj/effect/spawner/random/structure/grille, +/obj/effect/turf_decal/tile/green/anticorner/contrasted{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard) "noa" = ( /obj/effect/mapping_helpers/airlock/access/all/supply/mining, /obj/machinery/door/airlock/mining{ @@ -50276,11 +50204,6 @@ }, /turf/open/floor/catwalk_floor, /area/station/maintenance/floor4/port/aft) -"noF" = ( -/obj/effect/spawner/random/trash/grime, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/medical/abandoned) "noM" = ( /obj/machinery/atmospherics/pipe/smart/simple/dark/visible/layer2{ dir = 4 @@ -50322,6 +50245,11 @@ }, /turf/open/floor/iron/white, /area/station/medical/medbay/central) +"npd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/pod, +/area/station/maintenance/floor4/port/fore) "nph" = ( /obj/structure/chair/sofa/bench/right{ dir = 1 @@ -50388,6 +50316,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/textured_large, /area/station/hallway/secondary/exit/departure_lounge) +"npY" = ( +/obj/structure/rack, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/decoration/carpet, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard) "npZ" = ( /obj/effect/turf_decal/trimline/green/warning, /turf/open/floor/pod/light, @@ -50433,14 +50367,6 @@ /obj/structure/cable, /turf/open/floor/iron/dark/side, /area/station/engineering/atmos/hfr_room) -"nqI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/camera/autoname/directional/south, -/turf/open/floor/pod, -/area/station/maintenance/floor4/starboard/aft) "nqJ" = ( /obj/effect/turf_decal/loading_area/white{ dir = 4 @@ -50457,6 +50383,13 @@ }, /turf/open/floor/carpet/orange, /area/station/command/heads_quarters/qm) +"nqP" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard/fore) "nqU" = ( /obj/effect/turf_decal/stripes/line{ dir = 9 @@ -50485,6 +50418,14 @@ /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, @@ -50534,6 +50475,12 @@ /obj/machinery/newscaster/directional/north, /turf/open/floor/eighties, /area/station/commons/dorms/room2) +"nrS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/reinforced, +/obj/item/bot_assembly/floorbot, +/turf/open/floor/pod/dark, +/area/station/maintenance/floor2/starboard/aft) "nrX" = ( /obj/effect/turf_decal/tile/blue/opposingcorners, /turf/open/floor/iron/white, @@ -50600,17 +50547,6 @@ }, /turf/open/floor/iron/dark, /area/station/security/interrogation) -"nsw" = ( -/obj/machinery/door/airlock/hatch{ - name = "Maintenance Hatch" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/turf/open/floor/pod/dark, -/area/station/maintenance/floor3/port) "nsB" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -50836,14 +50772,6 @@ }, /turf/open/floor/iron/dark, /area/station/hallway/floor2/aft) -"nvw" = ( -/obj/machinery/door/poddoor/shutters{ - id = "maint-shut"; - name = "Maintenance Shutters" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/floor2/port/aft) "nvA" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 @@ -50877,14 +50805,6 @@ dir = 1 }, /area/station/security/prison) -"nvT" = ( -/obj/machinery/atmospherics/components/unary/portables_connector{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/floor2/port) "nwa" = ( /obj/effect/turf_decal/siding/wideplating_new{ dir = 8 @@ -50936,18 +50856,31 @@ }, /turf/open/floor/iron/dark/side, /area/station/security/prison) -"nwM" = ( -/obj/machinery/iv_drip, -/obj/structure/mirror/directional/south, -/obj/structure/sign/poster/official/cleanliness/directional/east, -/turf/open/floor/iron/dark, -/area/station/medical/surgery/aft) +"nwN" = ( +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor3/port/fore) "nwR" = ( /obj/structure/sign/warning{ pixel_y = -32 }, /turf/open/floor/circuit, /area/station/ai_monitored/turret_protected/aisat) +"nwV" = ( +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/medical/glass{ + name = "Medical Front Desk" + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/medical/abandoned) "nxm" = ( /obj/structure/chair/sofa/bench/left{ dir = 1 @@ -51049,13 +50982,6 @@ }, /turf/open/floor/iron/dark/side, /area/station/hallway/floor2/fore) -"nyv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/painting/library{ - pixel_y = 32 - }, -/turf/open/floor/pod/light, -/area/station/maintenance/floor3/starboard/aft) "nyE" = ( /turf/closed/wall/r_wall, /area/station/ai_monitored/turret_protected/ai_upload_foyer) @@ -51066,6 +50992,11 @@ /obj/effect/landmark/blobstart, /turf/open/floor/catwalk_floor, /area/station/maintenance/floor3/starboard) +"nyW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/mess, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/port/fore) "nyZ" = ( /obj/item/paper_bin, /obj/item/pen, @@ -51134,6 +51065,20 @@ "nzz" = ( /turf/open/floor/iron/dark/textured, /area/station/medical/surgery/fore) +"nzC" = ( +/obj/machinery/door/airlock{ + name = "Escape Pod B" + }, +/obj/effect/turf_decal/tile/green/half{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/turf_decal/tile/green/half{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/exit/escape_pod) "nzK" = ( /obj/structure/flora/bush/sparsegrass/style_random, /obj/item/stack/rods{ @@ -51173,6 +51118,11 @@ /obj/effect/spawner/random/structure/crate, /turf/open/floor/iron/textured_large, /area/station/cargo/storage) +"nAp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/cargo/warehouse) "nAu" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -51181,12 +51131,6 @@ dir = 4 }, /area/station/commons/storage/primary) -"nAv" = ( -/obj/item/storage/toolbox/electrical, -/obj/structure/table/glass, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/circuit/telecomms, -/area/station/tcommsat/server/upper) "nAC" = ( /obj/structure/window/reinforced/spawner/directional/east, /obj/structure/flora/bush/lavendergrass/style_random, @@ -51281,14 +51225,6 @@ /obj/effect/turf_decal/trimline/green/filled/line, /turf/open/floor/iron, /area/station/service/hydroponics) -"nBO" = ( -/obj/machinery/door/airlock/command{ - name = "Rusted Airlock" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/catwalk_floor/iron_dark, -/area/station/maintenance/floor2/starboard/aft) "nBT" = ( /obj/structure/extinguisher_cabinet/directional/north, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -51369,6 +51305,12 @@ /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, @@ -51461,11 +51403,6 @@ /obj/effect/spawner/random/structure/closet_maintenance, /turf/open/floor/pod/dark, /area/station/maintenance/floor3/starboard) -"nDE" = ( -/obj/machinery/light/dim/directional/north, -/obj/structure/window/reinforced/tinted/frosted/spawner/directional/east, -/turf/open/openspace, -/area/station/maintenance/floor4/port/aft) "nDK" = ( /obj/item/chair, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -51496,6 +51433,22 @@ /obj/machinery/firealarm/directional/west, /turf/open/floor/iron/dark, /area/station/command/gateway) +"nEt" = ( +/obj/effect/turf_decal/tile/green/full, +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/comfy/shuttle{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/secondary/exit/escape_pod) +"nEu" = ( +/obj/machinery/computer{ + desc = "Barely powered, it's not working well."; + name = "Flickering Nav Console" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/mineral/plastitanium/red, +/area/station/maintenance/floor4/starboard/aft) "nEB" = ( /obj/machinery/door/airlock/hatch{ name = "MiniSat Antechamber" @@ -51530,6 +51483,11 @@ "nEI" = ( /turf/open/floor/circuit, /area/station/ai_monitored/turret_protected/aisat_interior) +"nEN" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/white, +/area/station/medical/abandoned) "nEO" = ( /obj/structure/table, /obj/item/screwdriver, @@ -51564,17 +51522,17 @@ }, /turf/open/floor/pod/light, /area/station/maintenance/floor3/port) -"nFi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/spawner/random/structure/crate, -/turf/open/floor/plating, -/area/station/service/abandoned_gambling_den) -"nFq" = ( -/obj/item/stack/cable_coil/cut, +"nFp" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/rack, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/dark, -/area/station/maintenance/floor2/starboard) +/obj/item/clothing/gloves/cargo_gauntlet, +/obj/item/clothing/gloves/cargo_gauntlet, +/obj/item/clothing/gloves/cargo_gauntlet, +/turf/open/floor/iron, +/area/station/cargo/warehouse) "nFr" = ( /obj/machinery/door_buttons/access_button{ idDoor = "asylum_airlock_exterior"; @@ -51601,6 +51559,11 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/checker, /area/station/commons/locker) +"nFA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/space_heater, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/port/fore) "nFH" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment{ @@ -51761,12 +51724,6 @@ /obj/machinery/duct, /turf/open/floor/iron/dark, /area/station/security/lockers) -"nHB" = ( -/obj/machinery/atm/directional/north, -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/station/hallway/floor3/fore) "nHC" = ( /obj/machinery/door/airlock/virology/glass{ name = "Monkey Containment" @@ -51789,6 +51746,11 @@ dir = 4 }, /area/station/medical/abandoned) +"nHN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/black, +/area/station/hallway/secondary/service) "nHT" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -51796,11 +51758,13 @@ /obj/machinery/holopad, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) -"nIk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/port/fore) +"nHZ" = ( +/obj/structure/bed/dogbed{ + name = "pet bed" + }, +/obj/structure/window/spawner/directional/south, +/turf/open/floor/carpet/green, +/area/station/command/heads_quarters/rd) "nIr" = ( /obj/structure/chair/sofa/bench/right{ dir = 4 @@ -51845,13 +51809,6 @@ }, /turf/open/floor/iron/dark, /area/station/engineering/atmos/office) -"nIB" = ( -/obj/effect/turf_decal/stripes{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/floor2/starboard/aft) "nIL" = ( /obj/effect/turf_decal/siding/purple, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -52100,6 +52057,19 @@ }, /turf/open/floor/iron/dark, /area/station/service/library/garden) +"nLN" = ( +/obj/machinery/computer/security/telescreen/minisat{ + dir = 8; + pixel_x = 28 + }, +/obj/machinery/camera/directional/south{ + c_tag = "MiniSat Exterior Access"; + network = list("minisat") + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/turret_protected/aisat) "nLY" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, @@ -52123,11 +52093,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white, /area/station/medical/exam_room) -"nMn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/emcloset, -/turf/open/floor/iron/dark/textured_large, -/area/station/hallway/secondary/exit/escape_pod) "nMI" = ( /obj/effect/mapping_helpers/airlock/access/all/engineering/tcoms, /obj/structure/cable, @@ -52149,16 +52114,6 @@ /obj/structure/disposalpipe/trunk/multiz/down, /turf/open/openspace, /area/station/maintenance/floor4/starboard/fore) -"nMV" = ( -/obj/effect/turf_decal/trimline/blue/corner{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted, -/obj/machinery/camera/autoname/directional/east, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server/upper) "nMX" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 8 @@ -52169,19 +52124,49 @@ /obj/machinery/duct, /turf/open/floor/iron, /area/station/hallway/floor3/fore) -"nNk" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/engine, -/area/station/maintenance/floor4/starboard/aft) "nNq" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 10 }, /turf/open/floor/iron, /area/station/hallway/floor3/aft) +"nNw" = ( +/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) +"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) +"nNF" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/filled/mid_joiner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atm/directional/south, +/turf/open/floor/carpet/red, +/area/station/service/theater) "nNJ" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -52222,6 +52207,16 @@ /obj/effect/turf_decal/bot_red, /turf/open/floor/iron/textured_large, /area/station/cargo/warehouse) +"nOv" = ( +/obj/effect/turf_decal/trimline/green/warning{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/dark, +/area/station/maintenance/floor3/port) "nOB" = ( /obj/structure/kitchenspike, /obj/structure/sign/poster/random/directional/north, @@ -52291,6 +52286,12 @@ /obj/structure/cable, /turf/open/floor/catwalk_floor/iron, /area/station/engineering/engine_smes) +"nPl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/grille, +/turf/open/floor/plating, +/area/station/maintenance/floor3/starboard) "nPn" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -52321,16 +52322,6 @@ }, /turf/open/floor/engine/hull/reinforced, /area/space/nearstation) -"nPy" = ( -/obj/effect/turf_decal/trimline/purple/arrow_ccw, -/obj/effect/turf_decal/trimline/green/arrow_cw{ - dir = 1 - }, -/obj/machinery/light/directional/south, -/obj/item/radio/intercom/directional/south, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/cargo/miningdock) "nPE" = ( /turf/closed/wall/r_wall, /area/station/maintenance/floor4/starboard) @@ -52382,6 +52373,18 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron/dark/textured, /area/station/science/ordnance/storage) +"nQs" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor3/port/aft) "nQw" = ( /obj/machinery/light/dim/directional/east, /turf/open/floor/catwalk_floor, @@ -52401,19 +52404,6 @@ dir = 1 }, /area/station/security/prison) -"nQG" = ( -/obj/machinery/power/smes/engineering{ - input_attempt = 0; - input_level = 60000; - inputting = 0; - output_attempt = 0; - output_level = 60000; - outputting = 0 - }, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth_large, -/area/station/maintenance/floor2/starboard) "nQH" = ( /obj/effect/turf_decal/stripes{ dir = 6 @@ -52512,10 +52502,24 @@ }, /turf/open/floor/pod/light, /area/station/maintenance/floor2/port) +"nRn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/floor2/starboard) "nRo" = ( /obj/machinery/vending/games, /turf/open/floor/bamboo/tatami/black, /area/station/commons/storage/art) +"nRt" = ( +/obj/effect/turf_decal/trimline/green/warning{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor2/starboard) "nRv" = ( /obj/structure/marker_beacon/burgundy, /turf/open/floor/pod/light, @@ -52546,10 +52550,6 @@ /obj/structure/noticeboard/directional/east, /turf/open/floor/iron/dark/textured, /area/station/medical/pharmacy) -"nRS" = ( -/obj/structure/window/reinforced/tinted/frosted/spawner/directional/south, -/turf/open/openspace, -/area/station/maintenance/floor2/port) "nRU" = ( /obj/structure/chair{ dir = 1 @@ -52586,6 +52586,18 @@ /obj/machinery/blackbox_recorder, /turf/open/floor/circuit/green/telecomms, /area/station/tcommsat/server) +"nSr" = ( +/obj/effect/decal/cleanable/oil/streak, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/pod, +/area/station/maintenance/floor4/starboard/aft) +"nSu" = ( +/obj/machinery/space_heater/improvised_chem_heater, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard) "nSv" = ( /obj/structure/railing{ dir = 8 @@ -52596,6 +52608,13 @@ }, /turf/open/floor/pod/light, /area/station/maintenance/floor1/starboard) +"nSx" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/maintenance/floor1/port/aft) "nSz" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/sink/kitchen/directional/south, @@ -52603,10 +52622,6 @@ dir = 5 }, /area/station/security/prison/garden) -"nSC" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/engine, -/area/station/maintenance/floor4/starboard/aft) "nSD" = ( /obj/machinery/light/directional/north, /obj/effect/turf_decal/stripes, @@ -52664,10 +52679,19 @@ /obj/structure/sink/directional/west, /turf/open/floor/iron/dark, /area/station/medical/surgery/fore) +"nTz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/medical/abandoned) "nTB" = ( /obj/structure/fluff/oldturret, /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/station/maintenance/floor4/starboard/aft) +"nTH" = ( +/obj/structure/window/reinforced/tinted/frosted/spawner/directional/west, +/obj/structure/window/reinforced/tinted/frosted/spawner/directional/south, +/turf/open/openspace, +/area/station/maintenance/floor2/port) "nTI" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -52706,12 +52730,11 @@ /obj/machinery/computer/station_alert, /turf/open/floor/circuit, /area/station/ai_monitored/turret_protected/aisat/service) -"nTU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plating, -/area/station/maintenance/floor4/starboard/aft) +"nTQ" = ( +/obj/effect/spawner/random/vending/colavend, +/obj/structure/sign/poster/official/cleanliness/directional/east, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/entry) "nTZ" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron/textured_large, @@ -52845,14 +52868,6 @@ }, /turf/open/floor/iron/dark, /area/station/service/hydroponics) -"nVP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/space_heater/improvised_chem_heater, -/turf/open/floor/iron/dark/textured_edge{ - dir = 8 - }, -/area/station/medical/chemistry) "nVW" = ( /obj/structure/chair/office{ dir = 1 @@ -52966,6 +52981,13 @@ dir = 1 }, /area/station/command/gateway) +"nWU" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/floor2/starboard/fore) "nWW" = ( /turf/closed/wall, /area/station/hallway/floor4/aft) @@ -53124,6 +53146,18 @@ }, /turf/open/floor/iron/dark, /area/station/hallway/secondary/exit/departure_lounge) +"nYV" = ( +/obj/effect/turf_decal/tile/green/half{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_half{ + dir = 1 + }, +/area/station/hallway/secondary/exit/escape_pod) "nYX" = ( /obj/effect/turf_decal/trimline/purple/warning{ dir = 10 @@ -53165,12 +53199,11 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/station/command/heads_quarters/captain) -"nZh" = ( -/obj/effect/decal/cleanable/dirt, +"nZj" = ( +/obj/effect/spawner/random/trash/grime, /obj/effect/decal/cleanable/dirt, -/obj/structure/grille, /turf/open/floor/plating, -/area/station/hallway/floor3/fore) +/area/station/medical/abandoned) "nZm" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, @@ -53190,16 +53223,18 @@ /obj/structure/window/reinforced/tinted/fulltile, /turf/open/floor/plating, /area/station/service/library) +"nZx" = ( +/obj/structure/sign/poster/official/cleanliness/directional/west, +/obj/machinery/holopad, +/obj/machinery/camera/directional/west{ + name = "Security - Medical" + }, +/turf/open/floor/iron/white, +/area/station/security/medical) "nZG" = ( /obj/effect/turf_decal/delivery, /turf/open/floor/iron/dark, /area/station/hallway/floor2/fore) -"nZJ" = ( -/obj/structure/table/glass, -/obj/item/multitool, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/circuit/telecomms, -/area/station/tcommsat/server/upper) "nZR" = ( /obj/machinery/light_switch/directional/north, /obj/effect/landmark/start/assistant, @@ -53225,12 +53260,6 @@ /obj/structure/sign/departments/engineering/directional/west, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/floor1/aft) -"oad" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/portable_atmospherics/pump, -/obj/machinery/portable_atmospherics/pump, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/port/fore) "oar" = ( /turf/open/misc/beach/sand, /area/station/hallway/secondary/entry) @@ -53411,6 +53440,12 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/carpet/red, /area/station/service/theater) +"ocY" = ( +/obj/machinery/iv_drip, +/obj/structure/mirror/directional/south, +/obj/structure/sign/poster/official/cleanliness/directional/east, +/turf/open/floor/iron/dark, +/area/station/medical/surgery/aft) "ode" = ( /obj/structure/chair/comfy/shuttle{ dir = 1 @@ -53428,6 +53463,14 @@ /obj/effect/spawner/random/trash/moisture_trap, /turf/open/floor/pod/dark, /area/station/maintenance/floor2/starboard/aft) +"odw" = ( +/obj/structure/bed/medical/emergency, +/obj/structure/sign/gym/mirrored{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness) "odJ" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 6 @@ -53443,10 +53486,6 @@ /obj/item/plunger, /turf/open/floor/iron/textured_large, /area/station/medical/chemistry) -"odS" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet/purple, -/area/station/maintenance/floor1/port/aft) "odY" = ( /obj/effect/turf_decal/delivery, /obj/machinery/door/firedoor/heavy, @@ -53458,6 +53497,11 @@ /obj/effect/mapping_helpers/airlock/access/any/service/general, /turf/open/floor/iron/dark, /area/station/hallway/secondary/service) +"oem" = ( +/obj/item/reagent_containers/spray/syndicate, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/station/service/abandoned_gambling_den) "oet" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -53566,6 +53610,20 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/white, /area/station/command/heads_quarters/cmo) +"ofM" = ( +/obj/effect/turf_decal/trimline/blue/line, +/obj/effect/decal/cleanable/oil, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server/upper) +"ofX" = ( +/obj/effect/turf_decal/arrows/white{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/engineering/tracking_beacon, +/turf/open/floor/iron, +/area/station/maintenance/floor2/port/aft) "ofY" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, @@ -53590,6 +53648,11 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/closed/wall, /area/station/hallway/floor1/fore) +"ogk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/trashcart/filled, +/turf/open/floor/pod/light, +/area/station/maintenance/floor3/starboard/aft) "ogl" = ( /turf/open/floor/iron/dark/side, /area/station/hallway/floor4/fore) @@ -53604,12 +53667,6 @@ /obj/effect/spawner/random/trash/graffiti, /turf/open/floor/pod/light, /area/station/maintenance/solars/port/aft) -"ogA" = ( -/obj/effect/turf_decal/trimline/green/warning, -/obj/effect/spawner/random/structure/tank_holder, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/dark, -/area/station/maintenance/floor2/starboard) "ogD" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -53732,14 +53789,6 @@ /obj/effect/spawner/random/maintenance/two, /turf/open/floor/pod, /area/station/maintenance/floor4/starboard/aft) -"oin" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/station/maintenance/floor2/port/aft) "oiu" = ( /obj/machinery/computer/security/hos{ dir = 1 @@ -53772,10 +53821,11 @@ /mob/living/basic/slime, /turf/open/floor/grass, /area/station/maintenance/floor3/starboard) -"oiJ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/station/service/abandoned_gambling_den) +"oiK" = ( +/obj/structure/table/wood, +/obj/structure/window/spawner/directional/south, +/turf/open/floor/carpet/green, +/area/station/command/heads_quarters/rd) "oiO" = ( /obj/structure/cable, /obj/effect/spawner/structure/window/reinforced, @@ -53791,19 +53841,6 @@ "oiU" = ( /turf/open/floor/carpet/green, /area/station/commons/dorms/apartment2) -"oiY" = ( -/obj/effect/turf_decal/caution/stand_clear/white{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/white/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard/aft) "ojc" = ( /obj/structure/disposalpipe/segment{ dir = 10 @@ -53843,11 +53880,6 @@ }, /turf/open/floor/iron/dark, /area/station/service/library/lounge) -"ojK" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/floor2/port/aft) "ojM" = ( /obj/structure/chair/comfy{ dir = 4 @@ -53856,6 +53888,11 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/command/teleporter) +"ojP" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor1/starboard/fore) "ojU" = ( /obj/structure/table/wood, /turf/open/floor/wood, @@ -53891,6 +53928,13 @@ /obj/effect/spawner/random/structure/chair_comfy, /turf/open/floor/pod/light, /area/station/maintenance/floor4/port/fore) +"okA" = ( +/obj/structure/table/wood, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/broken/directional/east, +/turf/open/floor/wood/large, +/area/station/maintenance/floor4/starboard/aft) "okH" = ( /obj/effect/spawner/random/trash/garbage{ spawn_scatter_radius = 1 @@ -53898,11 +53942,6 @@ /obj/machinery/light/dim/directional/north, /turf/open/floor/pod/light, /area/station/maintenance/floor1/port) -"okI" = ( -/obj/machinery/firealarm/directional/west, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/dark, -/area/station/maintenance/floor2/starboard) "okJ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -53967,6 +54006,11 @@ /obj/item/flashlight/lamp/green, /turf/open/floor/carpet/green, /area/station/cargo/miningdock) +"oll" = ( +/obj/structure/flora/rock/pile, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/fakebasalt, +/area/station/maintenance/floor3/port) "olm" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/textured_corner{ @@ -53999,11 +54043,6 @@ /obj/structure/ladder, /turf/open/floor/pod/light, /area/station/maintenance/floor4/starboard/fore) -"olZ" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/structure/sign/poster/contraband/grey_tide/directional/north, -/turf/open/floor/iron/dark/corner, -/area/station/commons/storage/primary) "omh" = ( /obj/machinery/vending/boozeomat/all_access, /turf/open/floor/wood/tile, @@ -54092,14 +54131,6 @@ /obj/structure/sink/directional/west, /turf/open/floor/iron/white, /area/station/science/lobby) -"onc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/small/directional/south, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/pod, -/area/station/maintenance/floor4/starboard/aft) "ong" = ( /obj/machinery/light/directional/west, /obj/structure/sign/poster/random/directional/south, @@ -54127,34 +54158,41 @@ /obj/effect/spawner/random/engineering/tracking_beacon, /turf/open/floor/iron, /area/station/hallway/secondary/exit) +"onx" = ( +/obj/structure/table/wood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/service/abandoned_gambling_den) "onC" = ( /obj/machinery/light/dim/directional/east, /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/pod/light, /area/station/maintenance/floor1/port) -"onE" = ( -/obj/item/paint/anycolor{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/paint/anycolor, -/obj/item/paint/anycolor{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/structure/rack, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard/fore) "onI" = ( /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/ai_monitored/turret_protected/aisat_interior) +"onJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/port) "onM" = ( /obj/structure/cable, /obj/machinery/power/solar, /turf/open/floor/iron/solarpanel/airless, /area/station/solars/starboard/aft) +"onN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner, +/obj/structure/table/reinforced, +/obj/item/storage/box/lights/mixed{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/toolbox/electrical, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/port/fore) "onT" = ( /obj/machinery/door/airlock/science/glass{ name = "Science East" @@ -54208,14 +54246,6 @@ "ooy" = ( /turf/open/floor/iron/chapel, /area/station/service/chapel) -"ooC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/chem_master, -/turf/open/floor/iron/dark/textured_edge{ - dir = 8 - }, -/area/station/medical/chemistry) "ooF" = ( /obj/effect/spawner/random/structure/tank_holder, /obj/effect/turf_decal/trimline/green/warning{ @@ -54230,29 +54260,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/command/heads_quarters/hos) -"ooP" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/siding/thinplating_new{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/crate, -/obj/machinery/camera/autoname/directional/south, -/turf/open/floor/iron/smooth, -/area/station/cargo/warehouse) -"ooQ" = ( -/obj/structure/closet/firecloset, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/dark, -/area/station/maintenance/floor2/starboard) -"ooV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/ammo_casing/c38{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/service/abandoned_gambling_den) "ooW" = ( /obj/structure/table, /obj/item/key/security, @@ -54262,18 +54269,6 @@ /obj/effect/turf_decal/tile/red/fourcorners, /turf/open/floor/iron/dark, /area/station/security/warden) -"ooY" = ( -/obj/effect/turf_decal/stripes{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/floor2/starboard/fore) -"opd" = ( -/obj/item/stack/sheet/cardboard, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/floor2/port/aft) "opo" = ( /obj/effect/turf_decal/trimline/red/filled/corner{ dir = 8 @@ -54316,19 +54311,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/pod/dark, /area/station/maintenance/floor2/starboard/aft) -"opP" = ( -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/obj/structure/rack, -/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, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/security/prison) "opR" = ( /obj/structure/table/wood/fancy/red, /obj/item/food/grown/poppy{ @@ -54432,10 +54414,6 @@ }, /turf/open/floor/iron, /area/station/cargo/miningdock) -"oqQ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/security/execution/education) "oqW" = ( /obj/machinery/conveyor/inverted{ dir = 9; @@ -54580,14 +54558,6 @@ }, /turf/open/floor/iron/dark, /area/station/security/checkpoint/third) -"oua" = ( -/obj/effect/turf_decal/trimline/blue/end{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/shower/directional/east, -/turf/open/floor/iron/white, -/area/station/medical/abandoned) "oub" = ( /obj/structure/kitchenspike, /turf/open/floor/iron/kitchen_coldroom/freezerfloor, @@ -54606,6 +54576,20 @@ /obj/structure/chair, /turf/open/floor/iron/kitchen/herringbone, /area/station/service/kitchen/diner) +"oum" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/warning{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/dim/directional/west, +/turf/open/floor/pod/light, +/area/station/maintenance/floor2/starboard) "ouE" = ( /obj/machinery/light_switch/directional/south, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -54698,6 +54682,14 @@ /obj/machinery/light/directional/south, /turf/open/floor/iron/dark, /area/station/hallway/floor1/fore) +"ovX" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/floor4/starboard) "ovY" = ( /obj/structure/table/reinforced/rglass, /obj/effect/turf_decal/box/white, @@ -54705,12 +54697,6 @@ /obj/item/reagent_containers/dropper, /turf/open/floor/iron/white, /area/station/medical/virology) -"owb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/grille, -/turf/open/floor/plating, -/area/station/maintenance/floor4/port) "owf" = ( /obj/structure/window/reinforced/spawner/directional/west, /obj/effect/turf_decal/stripes/end{ @@ -54795,11 +54781,6 @@ dir = 1 }, /area/station/security/prison) -"oxz" = ( -/obj/effect/decal/cleanable/glass, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/engine, -/area/station/maintenance/floor1/port/aft) "oxJ" = ( /obj/structure/railing{ dir = 8 @@ -54813,11 +54794,6 @@ /obj/machinery/firealarm/directional/east, /turf/open/floor/catwalk_floor, /area/station/maintenance/floor3/port) -"oxO" = ( -/obj/item/storage/toolbox/electrical, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/floor1/port) "oxP" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -54875,26 +54851,6 @@ /obj/machinery/firealarm/directional/east, /turf/open/floor/catwalk_floor, /area/station/maintenance/floor1/port) -"oyN" = ( -/obj/effect/turf_decal/trimline/green/warning{ - dir = 10 - }, -/obj/machinery/airalarm/directional/east, -/obj/structure/closet/emcloset, -/obj/effect/spawner/random/maintenance, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/dark, -/area/station/maintenance/floor2/starboard) -"oyO" = ( -/obj/machinery/power/solar_control{ - dir = 1; - id = "starboardsolar"; - name = "Starboard Quarter Solar Control" - }, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/solars/starboard/aft) "oyT" = ( /obj/item/radio/intercom/directional/south, /obj/structure/disposalpipe/segment{ @@ -54941,6 +54897,14 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/catwalk_floor, /area/station/maintenance/floor2/starboard/fore) +"ozo" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/turf/open/floor/circuit/telecomms, +/area/station/tcommsat/server/upper) "ozr" = ( /obj/structure/railing{ dir = 1 @@ -54956,6 +54920,17 @@ "ozt" = ( /turf/open/openspace, /area/station/medical/psychology) +"ozC" = ( +/obj/structure/chair, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/solars/port/aft) +"ozD" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/mining, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine, +/area/station/maintenance/floor4/starboard/aft) "ozE" = ( /obj/item/storage/box/rubbershot{ pixel_x = -3; @@ -54980,6 +54955,14 @@ /obj/effect/turf_decal/tile/red/fourcorners, /turf/open/floor/iron/dark, /area/station/ai_monitored/security/armory) +"ozH" = ( +/obj/structure/closet/firecloset/full, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/dark, +/area/station/maintenance/floor4/port) "ozJ" = ( /obj/structure/disposalpipe/junction/yjunction{ dir = 8 @@ -55029,12 +55012,6 @@ /obj/machinery/light/directional/west, /turf/open/floor/iron, /area/station/commons/vacant_room/commissary) -"oAv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/grille/broken, -/turf/open/floor/plating, -/area/station/medical/abandoned) "oAA" = ( /obj/structure/table/wood, /obj/effect/turf_decal/siding/white{ @@ -55057,6 +55034,11 @@ }, /turf/open/space/basic, /area/space/nearstation) +"oAP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/contraband/random/directional/south, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/port) "oAU" = ( /obj/machinery/light/warm/directional/west, /turf/open/floor/carpet/royalblue, @@ -55115,11 +55097,6 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/floor1/aft) -"oBL" = ( -/obj/structure/ladder, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard/fore) "oBQ" = ( /obj/machinery/door/airlock/hatch{ name = "Maintenance Bulkhead" @@ -55186,6 +55163,21 @@ /obj/effect/turf_decal/trimline/yellow/warning, /turf/open/floor/pod/dark, /area/station/cargo/storage) +"oCN" = ( +/obj/effect/turf_decal/trimline/brown/warning{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/dark, +/area/station/maintenance/floor3/port/aft) +"oCQ" = ( +/obj/effect/turf_decal/trimline/purple/warning{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor2/starboard/fore) "oCW" = ( /obj/effect/turf_decal/tile/blue/half, /obj/structure/table/reinforced, @@ -55220,6 +55212,22 @@ /obj/structure/stairs/west, /turf/open/floor/pod/dark, /area/station/maintenance/floor3/starboard) +"oDp" = ( +/obj/effect/turf_decal/trimline/green/warning{ + dir = 8 + }, +/obj/structure/rack, +/obj/effect/spawner/random/maintenance, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/dark, +/area/station/maintenance/floor2/starboard) +"oDw" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/station/service/abandoned_gambling_den) "oDI" = ( /obj/structure/table/reinforced, /obj/item/restraints/handcuffs, @@ -55254,6 +55262,17 @@ /obj/machinery/duct, /turf/open/floor/iron/dark/textured, /area/station/commons/fitness) +"oDT" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/table/reinforced, +/obj/structure/cable, +/obj/item/phone{ + pixel_x = 6; + pixel_y = -2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/floor2/port/aft) "oEh" = ( /obj/structure/chair/plastic{ dir = 8 @@ -55341,6 +55360,17 @@ "oFl" = ( /turf/closed/wall/r_wall, /area/station/command/heads_quarters/ce) +"oFn" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/engine, +/area/station/maintenance/floor4/starboard/aft) "oFr" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 @@ -55373,23 +55403,11 @@ }, /turf/open/floor/iron/smooth_half, /area/station/tcommsat/server) -"oFL" = ( -/obj/structure/broken_flooring/singular/directional/south, -/turf/open/floor/plating, -/area/station/maintenance/floor1/port) "oFM" = ( /obj/effect/spawner/structure/window/hollow/reinforced/directional, /obj/structure/cable, /turf/open/floor/plating, /area/station/security/prison/shower) -"oFN" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/terminal{ - dir = 4 - }, -/turf/open/floor/circuit/telecomms, -/area/station/tcommsat/server/upper) "oFS" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark/side{ @@ -55443,6 +55461,12 @@ dir = 8 }, /area/station/command/teleporter) +"oGI" = ( +/obj/effect/decal/cleanable/oil/streak, +/obj/effect/decal/cleanable/dirt, +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard/aft) "oGL" = ( /obj/effect/turf_decal/delivery, /obj/machinery/door/firedoor/heavy, @@ -55468,13 +55492,6 @@ dir = 1 }, /area/station/hallway/secondary/exit/departure_lounge) -"oHa" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/structure/sign/poster/contraband/got_wood/directional/west, -/turf/open/floor/wood, -/area/station/maintenance/floor1/port/aft) "oHp" = ( /obj/effect/turf_decal/trimline/red/filled/corner{ dir = 4 @@ -55575,12 +55592,6 @@ /obj/effect/spawner/random/engineering/atmospherics_portable, /turf/open/floor/pod/light, /area/station/maintenance/floor3/port/fore) -"oIo" = ( -/obj/effect/turf_decal/trimline/purple/warning, -/obj/machinery/light/dim/directional/north, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/dark, -/area/station/maintenance/floor2/starboard) "oIr" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/light/small/directional/east, @@ -55651,14 +55662,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/security/lockers) -"oJl" = ( -/obj/effect/turf_decal/trimline/green/arrow_ccw{ - dir = 1 - }, -/obj/machinery/airalarm/directional/south, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/white/small, -/area/station/commons/fitness/recreation) "oJo" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -55691,6 +55694,13 @@ /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 @@ -55793,6 +55803,21 @@ /obj/machinery/light/small/directional/north, /turf/open/floor/iron/showroomfloor, /area/station/command/heads_quarters/qm) +"oLO" = ( +/obj/structure/window/spawner/directional/south, +/obj/structure/bed/medical/emergency, +/obj/structure/sign/gym/mirrored/right{ + pixel_y = 32 + }, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness) +"oLU" = ( +/obj/structure/table/reinforced/plastitaniumglass, +/obj/machinery/recharger, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/west, +/turf/open/floor/mineral/plastitanium/red, +/area/station/maintenance/floor4/starboard/aft) "oMd" = ( /obj/effect/turf_decal/trimline/green/filled/corner{ dir = 4 @@ -55800,6 +55825,11 @@ /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; @@ -55891,13 +55921,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/pod/light, /area/station/maintenance/floor2/port/aft) -"oNn" = ( -/obj/structure/bed/double, -/obj/item/bedsheet/cosmos/double, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood/large, -/area/station/maintenance/floor4/starboard/aft) "oNs" = ( /obj/machinery/vending/hydronutrients, /obj/machinery/light/directional/north, @@ -55966,14 +55989,6 @@ /obj/machinery/duct, /turf/open/floor/iron/white, /area/station/security/medical) -"oOr" = ( -/obj/effect/turf_decal/trimline/blue/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/oil, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server/upper) "oOA" = ( /obj/machinery/atmospherics/pipe/smart/manifold/dark/visible{ dir = 1 @@ -56054,6 +56069,12 @@ /obj/machinery/door/firedoor/heavy, /turf/open/floor/iron, /area/station/engineering/atmos) +"oPO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plating, +/area/station/maintenance/floor4/starboard/aft) "oPU" = ( /obj/structure/rack, /obj/effect/turf_decal/tile/neutral/anticorner/contrasted, @@ -56152,6 +56173,14 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/catwalk_floor, /area/station/maintenance/floor3/port/fore) +"oRc" = ( +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/window/spawner/directional/south, +/obj/structure/window/spawner/directional/east, +/obj/structure/window/spawner/directional/west, +/turf/open/floor/grass, +/area/station/hallway/secondary/exit/departure_lounge) "oRh" = ( /obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ dir = 4 @@ -56189,12 +56218,6 @@ }, /turf/open/floor/iron/dark, /area/station/hallway/floor3/aft) -"oRB" = ( -/obj/effect/turf_decal/trimline/green/warning, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/dim/directional/north, -/turf/open/floor/pod/light, -/area/station/maintenance/floor3/port/fore) "oRG" = ( /obj/structure/cable/multilayer/multiz, /turf/open/floor/catwalk_floor, @@ -56253,6 +56276,12 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/kitchen, /area/station/service/kitchen) +"oSr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/structure/electrified_grille, +/turf/open/floor/plating, +/area/station/maintenance/floor2/port/aft) "oSt" = ( /turf/closed/wall, /area/station/engineering/lobby) @@ -56277,13 +56306,6 @@ dir = 1 }, /area/station/hallway/floor3/fore) -"oSz" = ( -/obj/effect/spawner/random/trash/garbage{ - spawn_scatter_radius = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor1/port/aft) "oSA" = ( /obj/machinery/holopad, /turf/open/floor/iron/kitchen, @@ -56303,6 +56325,14 @@ /obj/machinery/holopad, /turf/open/floor/iron/white, /area/station/science/cytology) +"oSJ" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/electrical{ + pixel_y = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/solars/port/aft) "oSL" = ( /obj/machinery/door/airlock/hatch{ name = "Maintenance Bulkhead" @@ -56441,18 +56471,17 @@ }, /turf/open/floor/iron/dark, /area/station/security/office) +"oTJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/station/maintenance/floor3/starboard/aft) "oTK" = ( /obj/structure/sign/poster/contraband/robust_softdrinks, /turf/closed/wall, /area/station/maintenance/floor3/port/aft) -"oTQ" = ( -/obj/effect/spawner/random/structure/crate, -/obj/effect/turf_decal/arrows/white{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/floor2/port/aft) "oTW" = ( /obj/effect/turf_decal/siding/thinplating/dark{ dir = 4 @@ -56478,6 +56507,14 @@ /obj/effect/turf_decal/stripes/white/corner, /turf/open/floor/iron/dark/side, /area/station/hallway/floor2/aft) +"oUF" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/machinery/light_switch/directional/east, +/obj/machinery/atm/directional/north, +/turf/open/floor/wood, +/area/station/commons/dorms/apartment2) "oUH" = ( /obj/effect/turf_decal/tile/yellow, /obj/effect/turf_decal/tile/brown{ @@ -56506,6 +56543,16 @@ }, /turf/open/floor/iron/white, /area/station/medical/medbay/central) +"oUY" = ( +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/smooth_half, +/area/station/cargo/warehouse) "oUZ" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 8 @@ -56524,6 +56571,11 @@ dir = 8 }, /area/station/hallway/floor1/fore) +"oVh" = ( +/obj/effect/spawner/random/structure/tank_holder, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/maintenance/floor2/starboard/fore) "oVj" = ( /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ dir = 5 @@ -56547,6 +56599,11 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/wood/tile, /area/station/commons/fitness/recreation) +"oWk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/pod/light, +/area/station/maintenance/floor2/port/aft) "oWt" = ( /obj/effect/turf_decal/trimline/red/filled/line, /obj/effect/turf_decal/trimline/red/arrow_ccw{ @@ -56577,10 +56634,6 @@ }, /turf/open/floor/wood/parquet, /area/station/service/lawoffice) -"oWM" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood/tile, -/area/station/commons/fitness/recreation) "oWR" = ( /obj/structure/chair/sofa/bench, /turf/open/floor/iron/dark, @@ -56608,17 +56661,6 @@ }, /turf/open/floor/iron/white, /area/station/medical/medbay/central) -"oXH" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/table/reinforced, -/obj/structure/cable, -/obj/item/phone{ - pixel_x = 6; - pixel_y = -2 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/floor2/port/aft) "oXQ" = ( /obj/effect/turf_decal/tile/yellow, /obj/structure/cable, @@ -56668,6 +56710,12 @@ /obj/machinery/shower/directional/south, /turf/open/floor/catwalk_floor/iron_white, /area/station/cargo/miningoffice) +"oYo" = ( +/obj/structure/chair/office/light, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/floor2/port/aft) "oYv" = ( /obj/effect/turf_decal/tile/green/anticorner{ dir = 1 @@ -56809,27 +56857,10 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/pod/light, /area/station/maintenance/floor1/port/fore) -"oZY" = ( -/obj/structure/rack, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/decoration/material, -/obj/machinery/light/dim/directional/east, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard) "oZZ" = ( /obj/machinery/atmospherics/components/tank/air, /turf/open/floor/plating, /area/station/maintenance/floor2/starboard/aft) -"paA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/maintenance/floor2/starboard/aft) -"paN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/dim/directional/west, -/turf/open/floor/pod/light, -/area/station/maintenance/floor2/port/aft) "pbd" = ( /obj/machinery/light/cold/directional/south, /turf/open/floor/iron/dark, @@ -56856,12 +56887,6 @@ /obj/machinery/deepfryer, /turf/open/floor/iron/kitchen, /area/station/service/kitchen) -"pbt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/grille/broken, -/turf/open/floor/plating, -/area/station/hallway/floor3/fore) "pbx" = ( /obj/effect/landmark/start/prisoner, /obj/structure/sign/poster/official/random/directional/west, @@ -56885,6 +56910,14 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/white, /area/station/science/lobby) +"pbV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/mirror/directional/north, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/structure/sink/directional/south, +/turf/open/floor/wood/large, +/area/station/maintenance/floor4/starboard/aft) "pcf" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -56893,23 +56926,16 @@ }, /turf/open/floor/wood, /area/station/service/kitchen/diner) -"pcg" = ( -/obj/structure/rack, -/obj/item/storage/box/lights/tubes, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor1/port/aft) -"pcq" = ( -/obj/effect/landmark/generic_maintenance_landmark, -/obj/effect/turf_decal/stripes/corner{ +"pct" = ( +/obj/effect/turf_decal/trimline/blue/corner{ dir = 1 }, +/obj/structure/cable, /obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/floor4/starboard) +/obj/effect/turf_decal/tile/blue/anticorner/contrasted, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server/upper) "pcB" = ( /obj/structure/closet/secure_closet/medical2, /obj/effect/turf_decal/tile/blue/fourcorners, @@ -56944,6 +56970,11 @@ "pdh" = ( /turf/closed/wall/r_wall, /area/station/science/server) +"pdn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard/aft) "pdJ" = ( /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /obj/machinery/door/airlock/hatch{ @@ -57000,6 +57031,10 @@ /obj/machinery/atmospherics/pipe/smart/simple/green/visible, /turf/open/floor/plating, /area/station/engineering/atmos) +"peJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor1/port/aft) "peN" = ( /obj/structure/table, /obj/effect/turf_decal/tile/purple/opposingcorners, @@ -57007,6 +57042,14 @@ /obj/item/stock_parts/cell/high, /turf/open/floor/iron/white, /area/station/science/circuits) +"peT" = ( +/obj/machinery/door/poddoor/shutters{ + id = "maint-shut"; + name = "Maintenance Shutters" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/maintenance/floor2/port/aft) "peU" = ( /obj/machinery/light/cold/no_nightlight/directional/west, /turf/open/floor/grass, @@ -57106,6 +57149,16 @@ }, /turf/open/floor/wood/parquet, /area/station/service/lawoffice) +"pgP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/caution/stand_clear/white{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/turf/open/floor/pod, +/area/station/maintenance/floor4/starboard/aft) "pgS" = ( /obj/structure/cable, /turf/open/floor/catwalk_floor, @@ -57130,6 +57183,12 @@ "phd" = ( /turf/open/misc/sandy_dirt, /area/station/maintenance/floor3/starboard) +"phg" = ( +/obj/structure/marker_beacon/burgundy, +/obj/effect/decal/cleanable/dirt, +/obj/structure/grille/broken, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard/aft) "phm" = ( /obj/structure/closet/firecloset, /obj/effect/decal/cleanable/dirt, @@ -57223,6 +57282,14 @@ }, /turf/open/floor/wood, /area/station/service/theater) +"pis" = ( +/obj/machinery/light/directional/west, +/obj/structure/table/reinforced, +/obj/item/flashlight/lamp, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/maintenance/floor2/port/aft) "piw" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -57287,6 +57354,12 @@ /obj/machinery/newscaster/directional/north, /turf/open/floor/iron, /area/station/engineering/atmos/pumproom) +"pjo" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/solars/port/aft) "pjB" = ( /obj/effect/decal/cleanable/blood/old, /obj/structure/chair{ @@ -57302,13 +57375,6 @@ }, /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, @@ -57365,6 +57431,10 @@ /obj/structure/cable, /turf/open/floor/iron/dark/smooth_large, /area/station/service/kitchen/abandoned) +"pkH" = ( +/obj/structure/sign/poster/contraband/lusty_xenomorph/directional/west, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/port) "pkI" = ( /obj/structure/railing{ dir = 6 @@ -57390,6 +57460,10 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/security/prison/work) +"plb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/turret_protected/aisat_interior) "pld" = ( /obj/structure/chair/comfy, /turf/open/floor/iron/dark, @@ -57405,6 +57479,12 @@ dir = 1 }, /area/station/security/courtroom) +"plr" = ( +/obj/effect/spawner/random/structure/crate_loot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/maintenance/floor2/port/aft) "plC" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -57414,14 +57494,6 @@ }, /turf/open/floor/catwalk_floor, /area/station/maintenance/floor1/port/fore) -"plE" = ( -/obj/effect/turf_decal/trimline/blue/line{ - dir = 8 - }, -/obj/machinery/light/small/blacklight/directional/east, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server/upper) "plI" = ( /obj/structure/table, /obj/item/food/pizzaslice/moldy, @@ -57445,11 +57517,6 @@ dir = 1 }, /area/station/security/prison) -"pme" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/head/costume/allies, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/port) "pmk" = ( /obj/structure/chair/office{ dir = 1 @@ -57541,11 +57608,6 @@ }, /turf/open/floor/iron, /area/station/hallway/floor3/aft) -"pnk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/furniture_parts, -/turf/open/floor/pod/light, -/area/station/maintenance/floor2/port/aft) "pno" = ( /obj/machinery/portable_atmospherics/canister/nitrous_oxide, /obj/effect/turf_decal/tile/red/opposingcorners{ @@ -57560,12 +57622,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/cargo/miningdock) -"pnw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/official/random/directional/south, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/iron, -/area/station/security/range) "pnD" = ( /obj/machinery/light/directional/north, /obj/effect/turf_decal/trimline/purple/filled/corner{ @@ -57599,14 +57655,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/station/service/janitor) -"pnO" = ( -/obj/structure/bed/medical/emergency, -/obj/structure/sign/gym/mirrored{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark/textured, -/area/station/commons/fitness) "pnV" = ( /obj/machinery/atmospherics/components/unary/thermomachine/freezer{ dir = 4; @@ -57630,6 +57678,11 @@ "poE" = ( /turf/open/floor/catwalk_floor, /area/station/hallway/floor3/fore) +"poF" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/west, +/turf/open/floor/grass, +/area/station/science/xenobiology) "poL" = ( /obj/structure/chair/comfy/brown{ dir = 1 @@ -57740,13 +57793,12 @@ dir = 4 }, /area/station/hallway/floor3/aft) -"ppZ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +"pqb" = ( +/obj/machinery/light/dim/directional/south, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/catwalk_floor/iron_dark, -/area/station/maintenance/floor3/port) +/obj/effect/decal/cleanable/oil/streak, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard/aft) "pqg" = ( /obj/machinery/button/door/directional/east{ id = "mechbay"; @@ -57797,19 +57849,6 @@ /obj/structure/cable, /turf/open/floor/iron/dark/textured_large, /area/station/security/checkpoint/escape) -"pqY" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/gibs/bubblegum, -/obj/effect/decal/cleanable/dirt, -/obj/structure/extinguisher_cabinet/directional/north, -/obj/item/clothing/suit/toggle/labcoat, -/turf/open/floor/iron, -/area/station/maintenance/floor3/starboard/aft) "pre" = ( /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/floor2/fore) @@ -57843,21 +57882,6 @@ /obj/machinery/smartfridge/organ, /turf/closed/wall, /area/station/science/cytology) -"pro" = ( -/obj/effect/turf_decal/stripes, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor2/starboard) -"prt" = ( -/obj/machinery/door/airlock/mining{ - name = "Warehouse" - }, -/obj/effect/mapping_helpers/airlock/access/any/supply/general, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/iron, -/area/station/cargo/warehouse) "prw" = ( /obj/effect/turf_decal/tile/brown{ dir = 8 @@ -57870,6 +57894,10 @@ dir = 8 }, /area/station/cargo/lobby) +"prB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/blue, +/area/station/maintenance/floor3/port/aft) "prD" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -57920,13 +57948,6 @@ /obj/effect/turf_decal/tile/red/fourcorners, /turf/open/floor/iron/dark, /area/station/security/courtroom) -"psc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard/aft) "pse" = ( /turf/open/floor/iron/dark/side{ dir = 6 @@ -57950,6 +57971,11 @@ dir = 5 }, /area/station/security/checkpoint) +"psn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/maintenance/floor3/port/aft) "pso" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, @@ -57965,14 +57991,6 @@ /obj/structure/cable, /turf/open/floor/catwalk_floor/iron_white, /area/station/science/cytology) -"psx" = ( -/obj/effect/spawner/random/vending/snackvend, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/structure/sign/poster/contraband/moffuchis_pizza/directional/north, -/turf/open/floor/wood, -/area/station/maintenance/floor1/port/aft) "psJ" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 @@ -58050,6 +58068,14 @@ /obj/effect/turf_decal/tile/red, /turf/open/floor/iron/dark, /area/station/security/lockers) +"puh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/pod/light, +/area/station/maintenance/floor3/port/aft) "pui" = ( /turf/open/floor/iron, /area/station/engineering/atmos/project) @@ -58098,6 +58124,19 @@ /obj/machinery/vending/cigarette, /turf/open/floor/iron, /area/station/hallway/floor3/aft) +"puK" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/structure/rack, +/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, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/security/prison) "puM" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -58125,15 +58164,10 @@ /obj/item/hand_labeler, /turf/open/floor/wood/large, /area/station/service/kitchen/kitchen_backroom) -"pvm" = ( +"pvn" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/table/reinforced/rglass, -/obj/item/reagent_containers/pill/iron{ - desc = "What could it be?"; - name = "blue pill" - }, -/turf/open/floor/carpet/blue, -/area/station/maintenance/floor3/port/aft) +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) "pvs" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/plating, @@ -58180,25 +58214,21 @@ /obj/effect/turf_decal/tile/red/fourcorners, /turf/open/floor/iron/dark, /area/station/security/office) +"pvX" = ( +/obj/structure/table/reinforced, +/obj/structure/barricade/wooden{ + name = "wooden barricade (KEEP OUT)" + }, +/obj/structure/window/reinforced/tinted/spawner/directional/south, +/obj/structure/window/reinforced/tinted/spawner/directional/north, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/station/medical/chemistry) "pvZ" = ( /obj/structure/chair/sofa/bench/left, /obj/structure/flora/bush/sparsegrass/style_random, /turf/open/floor/grass, /area/station/service/library/garden) -"pwA" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/floor3/starboard/aft) -"pwC" = ( -/obj/machinery/light/small/directional/south, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet/red, -/area/station/maintenance/floor3/port/aft) "pwL" = ( /obj/effect/turf_decal/siding/blue{ dir = 4 @@ -58294,12 +58324,6 @@ /obj/effect/decal/cleanable/vomit/old, /turf/open/floor/iron/white/small, /area/station/commons/fitness/recreation) -"pxK" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera/autoname/directional/north, -/turf/open/floor/pod/light, -/area/station/maintenance/solars/port/aft) "pxQ" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, @@ -58417,6 +58441,10 @@ }, /turf/open/floor/iron, /area/station/service/hydroponics) +"pzl" = ( +/obj/structure/sign/poster/contraband/moffuchis_pizza/directional/east, +/turf/open/floor/carpet/royalblue, +/area/station/medical/break_room) "pzu" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/door/morgue{ @@ -58438,18 +58466,15 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/catwalk_floor/iron_dark, /area/station/maintenance/floor2/port) +"pzy" = ( +/obj/machinery/status_display/evac/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/purple, +/area/station/maintenance/floor1/port/aft) "pzE" = ( /obj/effect/turf_decal/stripes/white/line, /turf/open/floor/plating, /area/station/construction) -"pzH" = ( -/obj/effect/turf_decal/trimline/blue/corner{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server/upper) "pzK" = ( /obj/structure/chair/wood{ dir = 1 @@ -58488,6 +58513,12 @@ /obj/item/stack/sheet/iron, /turf/open/floor/pod/light, /area/station/maintenance/floor1/port/aft) +"pAg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/oil, +/obj/effect/turf_decal/stripes, +/turf/open/floor/iron, +/area/station/maintenance/floor2/starboard/aft) "pAn" = ( /obj/effect/mapping_helpers/airlock/access/any/medical/general, /obj/machinery/door/airlock/medical{ @@ -58524,6 +58555,13 @@ /obj/machinery/meter, /turf/closed/wall/r_wall, /area/station/engineering/atmos) +"pAW" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine, +/area/station/maintenance/floor4/starboard/aft) "pAY" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -58628,12 +58666,6 @@ /obj/effect/turf_decal/trimline/white/warning, /turf/open/floor/iron/dark, /area/station/hallway/floor1/aft) -"pCH" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/effect/spawner/random/structure/closet_maintenance, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/medical/abandoned) "pCS" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/multiz/supply/hidden/layer4{ @@ -58651,11 +58683,6 @@ /obj/effect/turf_decal/trimline/green/filled/line, /turf/open/floor/iron/dark, /area/station/medical/virology) -"pCW" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/cargo/warehouse) "pDd" = ( /obj/structure/table/reinforced/plasmarglass, /obj/item/reagent_containers/pill/epinephrine{ @@ -58669,6 +58696,16 @@ /obj/structure/cable, /turf/open/floor/iron/kitchen, /area/station/service/kitchen) +"pDn" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/commons/storage/primary) "pDq" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -58742,13 +58779,6 @@ /obj/structure/cable, /turf/open/floor/engine, /area/station/engineering/supermatter/room) -"pEs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/camera/autoname/directional/west, -/turf/open/floor/plating, -/area/station/maintenance/floor4/starboard/aft) "pEv" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, @@ -58767,6 +58797,17 @@ /obj/structure/cable, /turf/open/floor/wood/large, /area/station/command/heads_quarters/hop) +"pEy" = ( +/obj/effect/turf_decal/trimline/green/warning{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/item/camera, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/dark, +/area/station/maintenance/floor3/port) "pEA" = ( /obj/machinery/door/airlock/medical{ name = "Patient Containment" @@ -58810,24 +58851,6 @@ /obj/structure/emergency_shield/regenerating, /turf/open/floor/plating, /area/station/cargo/drone_bay) -"pFi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark/textured_edge{ - dir = 8 - }, -/area/station/medical/chemistry) -"pFu" = ( -/obj/structure/window/reinforced/spawner/directional/south, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/white/line{ - dir = 5 - }, -/turf/open/floor/iron/large, -/area/station/command/gateway) "pFA" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 @@ -58836,11 +58859,19 @@ /obj/machinery/duct, /turf/open/floor/iron/checker, /area/station/service/bar/atrium) -"pFI" = ( +"pFB" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, /obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate/trashcart, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, /turf/open/floor/pod/light, -/area/station/maintenance/floor3/starboard/aft) +/area/station/maintenance/floor4/port/fore) "pGb" = ( /obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ dir = 8 @@ -58866,12 +58897,6 @@ /obj/machinery/duct, /turf/open/floor/wood/large, /area/station/service/kitchen/diner) -"pGr" = ( -/obj/structure/rack, -/obj/item/storage/box/lights/mixed, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor1/port/aft) "pGy" = ( /obj/machinery/door/airlock/security/glass{ name = "Briefing Room" @@ -58933,6 +58958,10 @@ dir = 8 }, /area/station/hallway/floor3/fore) +"pHs" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/engineering/lobby) "pHu" = ( /obj/machinery/smartfridge/chemistry/virology/preloaded, /obj/effect/turf_decal/tile/green/opposingcorners, @@ -59062,42 +59091,6 @@ /obj/machinery/light/directional/north, /turf/open/floor/iron/textured_large, /area/station/cargo/storage) -"pJj" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/door/window/brigdoor/right/directional/west{ - name = "Shooting Range" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/station/security/range) -"pJq" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/closet_maintenance, -/turf/open/floor/iron, -/area/station/maintenance/floor3/starboard/aft) -"pJs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/green/warning{ - dir = 1 - }, -/turf/open/floor/pod/dark, -/area/station/maintenance/floor2/starboard/aft) -"pJu" = ( -/obj/structure/rack, -/obj/effect/decal/cleanable/cobweb, -/obj/item/trash/ready_donk, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor1/port/aft) "pJv" = ( /obj/machinery/atmospherics/components/unary/portables_connector{ dir = 4 @@ -59166,19 +59159,27 @@ }, /turf/open/floor/grass, /area/station/service/library/garden) +"pKm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/garbage{ + spawn_scatter_radius = 1 + }, +/obj/effect/spawner/random/trash/garbage{ + spawn_scatter_radius = 1 + }, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/port/fore) "pKp" = ( /obj/machinery/light/directional/east, /turf/open/floor/iron/dark/side{ dir = 4 }, /area/station/hallway/floor1/aft) -"pKD" = ( -/obj/effect/turf_decal/trimline/red/line{ - dir = 4 - }, +"pKv" = ( +/obj/structure/rack, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard/aft) +/turf/open/floor/wood, +/area/station/maintenance/floor3/starboard/aft) "pKE" = ( /obj/machinery/chem_master/condimaster{ name = "CondiMaster Neo" @@ -59204,6 +59205,13 @@ /obj/machinery/shower/directional/west, /turf/open/floor/iron/freezer, /area/station/hallway/secondary/service) +"pLz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/garbage{ + spawn_scatter_radius = 1 + }, +/turf/open/floor/pod/light, +/area/station/maintenance/floor1/port/aft) "pLK" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/plating, @@ -59220,6 +59228,13 @@ /obj/structure/reagent_dispensers/plumbed, /turf/open/floor/wood/large, /area/station/service/kitchen/kitchen_backroom) +"pLZ" = ( +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/window/spawner/directional/east, +/obj/structure/window/spawner/directional/north, +/obj/structure/window/spawner/directional/south, +/turf/open/floor/grass, +/area/station/hallway/secondary/exit/departure_lounge) "pMa" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -59273,10 +59288,6 @@ dir = 1 }, /area/station/security/prison) -"pME" = ( -/obj/structure/window/reinforced/tinted/frosted/spawner/directional/west, -/turf/open/openspace, -/area/station/maintenance/floor3/port) "pMI" = ( /obj/structure/sign/poster/official/random/directional/south, /turf/open/floor/iron, @@ -59298,13 +59309,6 @@ }, /turf/open/floor/iron/dark, /area/station/hallway/floor2/fore) -"pMZ" = ( -/obj/structure/table/wood, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/broken/directional/east, -/turf/open/floor/wood/large, -/area/station/maintenance/floor4/starboard/aft) "pNa" = ( /obj/structure/chair/office/light{ dir = 4 @@ -59328,6 +59332,12 @@ "pNj" = ( /turf/open/floor/carpet/red, /area/station/service/library) +"pNr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/airalarm/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/maintenance/floor2/port/aft) "pNA" = ( /obj/structure/rack, /obj/machinery/light/cold/no_nightlight/directional/north, @@ -59431,15 +59441,6 @@ /obj/item/clothing/suit/apron/overalls, /turf/open/floor/iron, /area/station/maintenance/floor2/starboard/aft) -"pOL" = ( -/obj/structure/window/reinforced/plasma/spawner/directional/south, -/obj/structure/window/reinforced/plasma/spawner/directional/north, -/obj/structure/window/reinforced/plasma/spawner/directional/west, -/obj/machinery/power/shuttle_engine/heater{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/floor1/port/aft) "pOP" = ( /obj/effect/turf_decal/tile/red/half{ dir = 1 @@ -59545,11 +59546,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/pod/light, /area/station/maintenance/floor1/starboard/fore) -"pPG" = ( -/obj/effect/spawner/random/engineering/tank, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor2/port/aft) "pPL" = ( /obj/machinery/door/window/brigdoor/security/cell/left/directional/south{ id = "cell-2"; @@ -59561,11 +59557,6 @@ /obj/effect/decal/cleanable/oil/streak, /turf/open/floor/iron/smooth, /area/station/construction) -"pPY" = ( -/obj/machinery/light/dim/directional/west, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/port/fore) "pQk" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -59619,6 +59610,11 @@ /obj/structure/lattice/catwalk, /turf/open/space/openspace, /area/space/nearstation) +"pRv" = ( +/obj/structure/window/reinforced/tinted/frosted/spawner/directional/south, +/obj/structure/window/reinforced/tinted/frosted/spawner/directional/east, +/turf/open/openspace, +/area/station/maintenance/floor2/port) "pRD" = ( /obj/machinery/shower/directional/north, /obj/effect/turf_decal/trimline/green/end{ @@ -59642,15 +59638,6 @@ /obj/item/knife/shiv, /turf/open/floor/plating, /area/station/maintenance/floor1/port/aft) -"pRO" = ( -/obj/effect/turf_decal/trimline/blue/line{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server/upper) "pRQ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -59694,6 +59681,14 @@ /obj/machinery/firealarm/directional/east, /turf/open/floor/glass/reinforced, /area/station/service/library) +"pSg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/graffiti, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/port/fore) "pSl" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -59706,6 +59701,11 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/iron, /area/station/commons/vacant_room/commissary) +"pSB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/dim/directional/east, +/turf/open/floor/iron/dark, +/area/station/maintenance/floor2/starboard/aft) "pSE" = ( /obj/effect/turf_decal/trimline/yellow/corner, /turf/open/floor/iron/dark/side{ @@ -59865,6 +59865,13 @@ "pUV" = ( /turf/open/floor/plating/airless, /area/station/solars/port/aft) +"pVa" = ( +/obj/structure/rack, +/obj/effect/decal/cleanable/cobweb, +/obj/item/trash/ready_donk, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor1/port/aft) "pVi" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -59905,11 +59912,6 @@ }, /turf/open/floor/iron/dark, /area/station/security/checkpoint/first) -"pVZ" = ( -/obj/effect/turf_decal/trimline/yellow/line, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/half, -/area/station/engineering/lobby) "pWf" = ( /obj/effect/turf_decal/bot, /obj/structure/reagent_dispensers/watertank/high, @@ -59967,13 +59969,6 @@ /obj/machinery/light/small/directional/north, /turf/open/floor/pod/light, /area/station/maintenance/floor3/starboard) -"pXh" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/dark, -/area/station/maintenance/floor3/port/aft) "pXi" = ( /obj/structure/window/reinforced/spawner/directional/south, /obj/machinery/light/directional/north, @@ -60043,6 +60038,13 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/carpet/blue, /area/station/command/heads_quarters/hop) +"pYs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/cargo/drone_bay) "pYw" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -60176,27 +60178,6 @@ }, /turf/open/floor/iron, /area/station/security/prison) -"pZF" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/structure/sign/poster/official/report_crimes/directional/north, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/security/detectives_office) -"pZL" = ( -/obj/effect/spawner/random/trash/garbage{ - spawn_loot_count = 3; - spawn_scatter_radius = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor3/starboard/aft) "pZU" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 @@ -60336,6 +60317,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/pod/light, /area/station/maintenance/floor2/port/aft) +"qbx" = ( +/obj/effect/turf_decal/tile/green/full, +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/comfy/shuttle{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/secondary/exit/escape_pod) "qbz" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -60373,6 +60362,11 @@ /obj/structure/cable, /turf/open/floor/plating/airless, /area/space/nearstation) +"qcv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard/fore) "qcD" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/decal/cleanable/oil, @@ -60423,11 +60417,6 @@ }, /turf/open/floor/iron/dark, /area/station/science/ordnance/testlab) -"qcZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/dim/directional/east, -/turf/open/floor/pod/dark, -/area/station/maintenance/floor3/port/aft) "qdc" = ( /obj/machinery/door/airlock/science/glass{ name = "Research and Development" @@ -60473,11 +60462,6 @@ }, /turf/open/floor/iron, /area/station/hallway/floor1/aft) -"qdO" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/floor2/starboard) "qdV" = ( /turf/open/floor/plating/airless, /area/station/solars/starboard/fore) @@ -60509,10 +60493,6 @@ }, /turf/open/floor/iron/dark, /area/station/hallway/floor3/aft) -"qeb" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor2/starboard/aft) "qef" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2, /obj/effect/turf_decal/stripes/end{ @@ -60573,17 +60553,16 @@ }, /turf/open/floor/iron, /area/station/commons/vacant_room/commissary) +"qeO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod, +/area/station/maintenance/floor4/starboard/aft) "qeW" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, /turf/open/floor/iron, /area/station/cargo/miningdock) -"qeX" = ( -/obj/structure/ladder, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/dark, -/area/station/maintenance/floor3/port/aft) "qeY" = ( /obj/machinery/door/airlock/wood{ id_tag = "library-private"; @@ -60601,12 +60580,6 @@ }, /turf/open/floor/engine/hull/reinforced, /area/space/nearstation) -"qfn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/grille, -/turf/open/floor/plating, -/area/station/medical/abandoned) "qfr" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, @@ -60621,13 +60594,6 @@ }, /turf/open/floor/iron/dark, /area/station/security/eva) -"qfE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/white/line{ - dir = 9 - }, -/turf/open/floor/pod, -/area/station/maintenance/floor4/starboard/aft) "qfG" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -60654,10 +60620,6 @@ /obj/machinery/duct, /turf/open/floor/iron/dark, /area/station/security/brig) -"qfT" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/light/colour_cycle/dancefloor_b, -/area/station/medical/abandoned) "qgb" = ( /obj/structure/table/wood, /obj/item/folder/red, @@ -60674,17 +60636,16 @@ }, /turf/open/floor/wood/large, /area/station/service/library/artgallery) +"qgn" = ( +/obj/structure/window/reinforced/tinted/frosted/spawner/directional/south, +/turf/open/openspace, +/area/station/maintenance/floor2/port) "qgr" = ( /obj/effect/turf_decal/trimline/yellow/warning{ dir = 4 }, /turf/open/floor/pod/dark, /area/station/cargo/storage) -"qgw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/toy/nuke, -/turf/open/floor/pod/light, -/area/station/security/execution/education) "qgy" = ( /obj/structure/railing/corner, /obj/effect/turf_decal/trimline/purple/warning, @@ -60768,6 +60729,14 @@ /obj/structure/flora/bush/lavendergrass/style_random, /turf/open/floor/grass, /area/station/security/courtroom) +"qhu" = ( +/obj/machinery/chem_master, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/white, +/area/station/medical/abandoned) "qhE" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 1 @@ -60860,6 +60829,16 @@ /obj/effect/decal/cleanable/greenglow, /turf/open/floor/pod/light, /area/station/maintenance/floor1/port/aft) +"qjz" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/structure/crate, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/iron/smooth, +/area/station/cargo/warehouse) "qjK" = ( /obj/machinery/camera/autoname/directional/west, /obj/structure/sign/departments/restroom/directional/west, @@ -61002,6 +60981,12 @@ /obj/effect/turf_decal/tile/green/opposingcorners, /turf/open/floor/iron/white, /area/station/hallway/floor2/aft) +"qls" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor3/starboard/aft) "qlt" = ( /obj/effect/turf_decal/trimline/red/warning{ dir = 8 @@ -61019,6 +61004,14 @@ }, /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 @@ -61080,6 +61073,12 @@ /obj/structure/closet/emcloset, /turf/open/floor/pod/dark, /area/station/maintenance/floor2/starboard/aft) +"qmx" = ( +/obj/item/rack_parts, +/obj/item/weldingtool/mini, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard) "qmB" = ( /obj/structure/window/reinforced/spawner/directional/east, /obj/structure/curtain/cloth, @@ -61123,6 +61122,23 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/station/maintenance/floor4/starboard/aft) +"qni" = ( +/obj/machinery/light/directional/south, +/obj/item/trash/champagne_cork{ + pixel_x = 8; + pixel_y = 5 + }, +/obj/item/trash/energybar, +/obj/item/stack/cannonball/trashball{ + pixel_x = -7; + pixel_y = 4 + }, +/obj/item/trash/cheesie, +/obj/effect/decal/cleanable/garbage, +/obj/effect/decal/cleanable/food/plant_smudge, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor1/port/aft) "qnq" = ( /obj/effect/turf_decal/trimline/yellow/warning{ dir = 8 @@ -61155,15 +61171,6 @@ /obj/effect/turf_decal/tile/yellow/half/contrasted, /turf/open/floor/iron, /area/station/engineering/atmos/pumproom) -"qnI" = ( -/obj/effect/turf_decal/stripes{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/item/stack/sheet/iron/five, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/floor2/starboard/fore) "qnN" = ( /obj/machinery/chem_heater/withbuffer, /turf/open/floor/circuit, @@ -61219,17 +61226,6 @@ /obj/structure/cable, /turf/open/floor/iron/dark/side, /area/station/commons/storage/primary) -"qoG" = ( -/obj/machinery/field/generator, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/red/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/textured_large, -/area/station/engineering/lobby) "qoI" = ( /obj/structure/chair/wood{ dir = 4 @@ -61237,6 +61233,11 @@ /obj/machinery/keycard_auth/directional/north, /turf/open/floor/carpet, /area/station/command/heads_quarters/captain) +"qoT" = ( +/obj/machinery/biogenerator, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/floor4/starboard) "qoV" = ( /obj/machinery/atmospherics/components/binary/pump/layer2{ dir = 4 @@ -61317,13 +61318,13 @@ /mob/living/basic/butterfly, /turf/open/floor/grass, /area/station/hallway/secondary/entry) -"qqj" = ( +"qpR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, /obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/engineering/flashlight, -/obj/structure/rack, -/obj/machinery/light/dim/directional/west, -/turf/open/floor/pod/light, -/area/station/maintenance/floor2/port/aft) +/turf/open/floor/plating, +/area/station/maintenance/floor4/starboard) "qqp" = ( /obj/structure/toilet/greyscale{ dir = 4 @@ -61335,20 +61336,10 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/station/medical/storage) -"qqu" = ( -/obj/machinery/light/broken/directional/north, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/floor2/starboard/fore) "qqv" = ( /obj/effect/turf_decal/delivery, /turf/open/floor/iron/dark, /area/station/hallway/floor3/fore) -"qqC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/closet_maintenance, -/turf/open/floor/pod/light, -/area/station/maintenance/floor2/port/aft) "qqE" = ( /obj/effect/turf_decal/tile/red{ dir = 4 @@ -61403,6 +61394,18 @@ dir = 1 }, /area/station/security/prison) +"qrC" = ( +/obj/structure/table, +/obj/item/clothing/head/soft/grey, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor1/starboard/fore) +"qrH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/maintenance, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/port) "qrK" = ( /obj/effect/turf_decal/trimline/blue/warning, /obj/machinery/camera/autoname/directional/east, @@ -61423,6 +61426,34 @@ dir = 8 }, /area/station/service/chapel) +"qrZ" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/sign/poster/official/report_crimes/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/station/security/detectives_office) +"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, @@ -61485,19 +61516,6 @@ /obj/structure/cable, /turf/open/floor/iron/dark/textured_large, /area/station/security/checkpoint/escape) -"qsL" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/corner{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/abandoned) "qsN" = ( /obj/effect/turf_decal/bot, /obj/structure/rack, @@ -61516,15 +61534,6 @@ /obj/machinery/status_display/ai/directional/east, /turf/open/floor/iron/dark/corner, /area/station/command/teleporter) -"qsR" = ( -/obj/effect/turf_decal/tile/blue/full, -/obj/machinery/power/floodlight, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white/textured_large, -/area/station/medical/abandoned) "qsS" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -61559,12 +61568,17 @@ /obj/machinery/duct, /turf/open/floor/iron/chapel, /area/station/service/chapel) -"qtj" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/spawner/random/structure/crate_abandoned, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/floor2/port/aft) +"qtl" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 9 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/large, +/area/station/command/gateway) "qtm" = ( /obj/structure/closet/emcloset, /obj/effect/turf_decal/trimline/purple/warning{ @@ -61572,16 +61586,6 @@ }, /turf/open/floor/pod/dark, /area/station/maintenance/floor2/port) -"qtz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/garbage{ - spawn_scatter_radius = 1 - }, -/obj/effect/spawner/random/trash/garbage{ - spawn_scatter_radius = 1 - }, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/port/fore) "qtA" = ( /obj/structure/chair{ dir = 4 @@ -61634,15 +61638,6 @@ dir = 1 }, /area/station/hallway/floor3/fore) -"qtY" = ( -/obj/structure/cable, -/obj/machinery/power/smes/engineering{ - input_level = 60000; - output_level = 60000 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth_large, -/area/station/maintenance/floor2/starboard) "qun" = ( /turf/closed/wall/r_wall, /area/station/science/genetics) @@ -61763,6 +61758,10 @@ /obj/structure/cable, /turf/open/floor/carpet/royalblue, /area/station/commons/dorms/room4) +"qwd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/circuit/telecomms, +/area/station/tcommsat/server/upper) "qwg" = ( /obj/structure/chair/comfy/brown{ dir = 1 @@ -61920,11 +61919,6 @@ /obj/machinery/door/firedoor/border_only, /turf/open/floor/wood/tile, /area/station/science/xenobiology/hallway) -"qxQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/engine, -/area/station/maintenance/floor4/starboard/aft) "qxT" = ( /obj/effect/turf_decal/trimline/red/filled/corner{ dir = 1 @@ -61990,6 +61984,16 @@ /obj/structure/disposalpipe/junction/flip, /turf/open/floor/iron, /area/station/hallway/floor4/fore) +"qyw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 5 + }, +/obj/structure/disposalpipe/trunk/multiz{ + dir = 8 + }, +/turf/open/floor/pod/light, +/area/station/maintenance/floor2/port/aft) "qyx" = ( /turf/open/floor/engine, /area/station/science/explab) @@ -62058,35 +62062,17 @@ /obj/structure/closet/emcloset, /turf/open/floor/pod/dark, /area/station/maintenance/floor2/port/aft) -"qzc" = ( -/obj/effect/turf_decal/tile/green/half{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock{ - name = "Escape Pod B" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit/escape_pod) "qzg" = ( /obj/effect/turf_decal/stripes/white/line{ dir = 8 }, /turf/open/floor/plating, /area/station/construction) -"qzk" = ( -/obj/structure/window/reinforced/tinted/frosted/spawner/directional/south, -/obj/structure/window/reinforced/tinted/frosted/spawner/directional/west, -/turf/open/openspace, -/area/station/maintenance/floor4/port/aft) -"qzm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +"qzj" = ( +/obj/structure/flora/rock, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/white/smooth_corner, -/area/station/cargo/miningdock) +/turf/open/floor/fakebasalt, +/area/station/maintenance/floor3/port) "qzx" = ( /obj/structure/bookcase/random/fiction, /turf/open/floor/carpet/royalblack, @@ -62101,6 +62087,10 @@ /obj/structure/sign/poster/contraband/random/directional/north, /turf/open/floor/catwalk_floor, /area/station/maintenance/floor2/port/aft) +"qzF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/hallway/secondary/exit/departure_lounge) "qzH" = ( /obj/structure/railing, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -62160,10 +62150,6 @@ /obj/effect/turf_decal/trimline/red/corner, /turf/open/floor/pod/dark, /area/station/hallway/secondary/entry) -"qAn" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/floor2/starboard/aft) "qAq" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -62184,15 +62170,6 @@ }, /turf/open/floor/iron/white, /area/station/hallway/floor2/fore) -"qAw" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/trimline/red/line{ - dir = 10 - }, -/obj/machinery/airalarm/directional/west, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard/aft) "qAx" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/duct, @@ -62415,14 +62392,6 @@ dir = 9 }, /area/station/hallway/floor4/aft) -"qCM" = ( -/obj/structure/table, -/obj/item/storage/pill_bottle/lsd{ - pixel_x = 5 - }, -/obj/structure/sign/poster/contraband/red_rum/directional/east, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/port) "qCO" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /obj/effect/turf_decal/tile/red/opposingcorners{ @@ -62592,6 +62561,10 @@ /obj/structure/table, /turf/open/floor/catwalk_floor/iron, /area/station/cargo/storage) +"qEj" = ( +/obj/structure/window/reinforced/tinted/frosted/spawner/directional/south, +/turf/open/openspace, +/area/station/maintenance/floor3/port) "qEt" = ( /obj/structure/railing{ dir = 8 @@ -62620,6 +62593,14 @@ }, /turf/open/floor/iron/dark, /area/station/hallway/floor3/aft) +"qEC" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible/layer2{ + dir = 10 + }, +/obj/machinery/airalarm/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/maintenance/disposal/incinerator) "qEE" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -62710,15 +62691,6 @@ name = "bathroom tiles" }, /area/station/security/lockers) -"qFM" = ( -/obj/effect/spawner/random/structure/grille, -/obj/effect/turf_decal/tile/green/anticorner/contrasted{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard) "qFO" = ( /obj/machinery/door/airlock/hatch{ name = "Maintenance Access" @@ -62804,6 +62776,16 @@ /obj/item/multitool, /turf/open/floor/iron/dark, /area/station/command/bridge) +"qGG" = ( +/obj/structure/window/reinforced/tinted/frosted/spawner/directional/east, +/turf/open/openspace, +/area/station/maintenance/floor3/port) +"qGT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/textured_half{ + dir = 1 + }, +/area/station/hallway/secondary/exit/escape_pod) "qGV" = ( /obj/structure/railing, /obj/effect/turf_decal/trimline/blue/line, @@ -63046,12 +63028,6 @@ /obj/structure/spider/stickyweb, /turf/open/floor/pod/light, /area/station/maintenance/floor1/starboard) -"qKG" = ( -/obj/structure/rack, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/mod/maint, -/turf/open/floor/wood, -/area/station/maintenance/floor3/starboard/aft) "qKR" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -63059,16 +63035,18 @@ /obj/machinery/door/firedoor, /turf/open/floor/catwalk_floor, /area/station/maintenance/floor2/starboard) +"qKU" = ( +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/floor2/starboard/fore) "qLg" = ( /obj/structure/flora/bush/sparsegrass/style_random, /obj/item/radio/intercom/directional/south, /turf/open/floor/grass, /area/station/service/hydroponics/garden/abandoned) -"qLo" = ( -/obj/effect/spawner/random/structure/tank_holder, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/floor2/starboard/fore) "qLH" = ( /obj/machinery/fax{ fax_name = "Head of Personnel's Office"; @@ -63100,6 +63078,14 @@ }, /turf/open/floor/pod/light, /area/station/maintenance/floor3/port) +"qLQ" = ( +/obj/machinery/airalarm/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/solars/port/aft) "qLS" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 8 @@ -63115,6 +63101,12 @@ /obj/structure/ladder, /turf/open/floor/catwalk_floor, /area/station/hallway/floor2/fore) +"qMg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/gibs/up, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/pod/dark, +/area/station/maintenance/floor4/starboard) "qMu" = ( /obj/structure/cable, /obj/effect/spawner/random/engineering/tracking_beacon, @@ -63125,11 +63117,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible/layer4, /turf/open/floor/plating, /area/station/hallway/floor1/aft) -"qMB" = ( -/obj/structure/window/plasma/spawner/directional/south, -/obj/machinery/rnd/server, -/turf/open/floor/circuit/telecomms, -/area/station/science/server) "qMT" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -63167,6 +63154,11 @@ }, /turf/open/floor/iron/dark, /area/station/engineering/atmos/pumproom) +"qNp" = ( +/obj/effect/spawner/random/trash/graffiti, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/solars/port/aft) "qNu" = ( /obj/structure/displaycase/trophy, /turf/open/floor/carpet/royalblack, @@ -63228,10 +63220,6 @@ }, /turf/open/floor/pod/dark, /area/station/maintenance/floor3/starboard/fore) -"qOh" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/floor2/starboard/fore) "qOq" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 6 @@ -63278,12 +63266,6 @@ dir = 1 }, /area/station/security/brig) -"qON" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/airalarm/directional/south, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/solars/starboard/aft) "qOQ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, @@ -63318,6 +63300,11 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/catwalk_floor, /area/station/maintenance/floor4/starboard/aft) +"qOZ" = ( +/obj/structure/window/reinforced/tinted/spawner/directional/east, +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/iron/dark/smooth_large, +/area/station/service/library/printer) "qPb" = ( /obj/machinery/light/directional/south, /obj/machinery/atmospherics/pipe/multiz/supply/hidden/layer4, @@ -63455,20 +63442,6 @@ }, /turf/open/floor/iron, /area/station/commons/vacant_room/commissary) -"qQi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/glass, -/obj/item/bonesetter, -/obj/effect/spawner/random/medical/surgery_tool, -/turf/open/floor/iron/white, -/area/station/maintenance/floor3/starboard/aft) -"qQr" = ( -/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/catwalk_floor/iron, -/area/station/hallway/secondary/exit/escape_pod) "qQs" = ( /obj/machinery/light/directional/east, /obj/effect/mapping_helpers/broken_floor, @@ -63587,10 +63560,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/dark/side, /area/station/hallway/floor4/fore) -"qRS" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/circuit/telecomms, -/area/station/tcommsat/server/upper) "qRW" = ( /obj/structure/disposalpipe/junction{ dir = 8 @@ -63641,6 +63610,20 @@ /obj/structure/sign/poster/official/random/directional/east, /turf/open/floor/iron/checker, /area/station/commons/vacant_room/commissary) +"qSL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 9 + }, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 8 + }, +/obj/effect/mapping_helpers/mail_sorting/engineering/general, +/obj/effect/mapping_helpers/mail_sorting/engineering/ce_office, +/obj/effect/mapping_helpers/mail_sorting/engineering/atmospherics, +/turf/open/floor/pod/light, +/area/station/maintenance/floor2/port/aft) "qSW" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -63672,6 +63655,11 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/pod/light, /area/station/maintenance/floor1/starboard/fore) +"qTy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/structure/closet_maintenance, +/turf/open/floor/pod/light, +/area/station/maintenance/floor2/port/aft) "qTA" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -63692,18 +63680,16 @@ /obj/item/radio/intercom/directional/west, /turf/open/floor/iron, /area/station/hallway/floor1/aft) -"qTH" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/medical/abandoned) "qTI" = ( /obj/structure/table/wood, /obj/item/paper_bin, /turf/open/floor/wood/parquet, /area/station/commons/dorms/room2) +"qTJ" = ( +/obj/machinery/field/generator, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured_large, +/area/station/engineering/lobby) "qTK" = ( /obj/effect/turf_decal/tile/purple/opposingcorners, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -63789,15 +63775,6 @@ }, /turf/open/floor/iron/kitchen, /area/station/service/kitchen) -"qVe" = ( -/obj/effect/turf_decal/trimline/green/warning{ - dir = 8 - }, -/obj/structure/rack, -/obj/effect/spawner/random/maintenance, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/dark, -/area/station/maintenance/floor2/starboard) "qVf" = ( /obj/structure/cable, /turf/open/floor/iron, @@ -63815,6 +63792,11 @@ /obj/effect/mapping_helpers/airlock/access/any/science/robotics, /turf/open/floor/iron/dark, /area/station/ai_monitored/turret_protected/aisat/hallway) +"qVs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/firecloset/full, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/secondary/exit/escape_pod) "qVv" = ( /obj/structure/chair/comfy/brown{ dir = 8 @@ -63878,11 +63860,6 @@ dir = 9 }, /area/station/ai_monitored/turret_protected/ai) -"qWm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/space_heater, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/port/fore) "qWn" = ( /obj/structure/railing/corner{ dir = 8 @@ -63903,11 +63880,6 @@ /obj/effect/spawner/random/structure/table_or_rack, /turf/open/floor/pod/light, /area/station/maintenance/floor3/starboard) -"qWJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/catwalk_floor/iron_smooth, -/area/station/cargo/warehouse) "qWN" = ( /obj/structure/lattice, /turf/open/openspace, @@ -64041,6 +64013,11 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/engineering/atmos/pumproom) +"qYj" = ( +/obj/structure/ladder, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/dark, +/area/station/maintenance/floor3/port/aft) "qYq" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 8 @@ -64075,6 +64052,14 @@ dir = 6 }, /area/station/hallway/floor1/aft) +"qZg" = ( +/obj/item/stack/tile/wood, +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/c38{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/service/abandoned_gambling_den) "qZh" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -64090,13 +64075,6 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron/dark/textured, /area/station/science/ordnance/storage) -"qZq" = ( -/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/pod/light, -/area/station/maintenance/floor4/port/fore) "qZF" = ( /obj/structure/cable, /obj/machinery/power/apc/auto_name/directional/south, @@ -64141,10 +64119,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/service/lawoffice) -"rao" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/port/fore) "raq" = ( /turf/open/floor/wood, /area/station/hallway/floor4/fore) @@ -64173,6 +64147,13 @@ name = "lab floor" }, /area/station/science/robotics/lab) +"raA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/engineering/flashlight, +/obj/structure/rack, +/obj/machinery/light/dim/directional/west, +/turf/open/floor/pod/light, +/area/station/maintenance/floor2/port/aft) "raC" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -64210,6 +64191,13 @@ }, /turf/open/floor/pod/dark, /area/station/maintenance/floor3/port) +"rba" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 6 + }, +/turf/open/floor/wood, +/area/station/service/abandoned_gambling_den) "rbg" = ( /obj/structure/railing/corner{ dir = 8 @@ -64328,16 +64316,11 @@ /obj/effect/spawner/random/trash/cigbutt, /turf/open/floor/pod/light, /area/station/maintenance/floor2/port/aft) -"rcu" = ( -/obj/effect/turf_decal/tile/green/half{ - dir = 8 - }, +"rcD" = ( +/obj/item/storage/toolbox/electrical, /obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark/textured_half{ - dir = 1 - }, -/area/station/hallway/secondary/exit/escape_pod) +/turf/open/floor/plating, +/area/station/maintenance/floor1/port) "rcO" = ( /turf/open/floor/plating/airless, /area/space/nearstation) @@ -64366,27 +64349,12 @@ }, /turf/open/floor/glass/reinforced, /area/station/service/library) -"rdu" = ( -/obj/structure/table/bronze, -/obj/item/storage/book/bible, -/turf/open/floor/iron, -/area/station/service/chapel) "rdx" = ( /obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/visible{ dir = 4 }, /turf/open/floor/iron, /area/station/engineering/atmos) -"rdC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/tracks{ - dir = 1 - }, -/turf/open/floor/engine, -/area/station/maintenance/floor4/starboard/aft) "rdF" = ( /obj/machinery/door/airlock/medical{ frequency = 1450; @@ -64518,14 +64486,6 @@ dir = 1 }, /area/station/hallway/floor2/aft) -"reD" = ( -/obj/effect/spawner/random/structure/chair_maintenance{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/random/directional/east, -/turf/open/floor/plating, -/area/station/medical/abandoned) "reK" = ( /obj/machinery/light/directional/east, /obj/structure/window/spawner/directional/south, @@ -64553,13 +64513,6 @@ name = "lab floor" }, /area/station/science/genetics) -"rfo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/garbage{ - spawn_scatter_radius = 1 - }, -/turf/open/floor/pod/light, -/area/station/maintenance/floor1/port/aft) "rfx" = ( /turf/open/floor/light/colour_cycle/dancefloor_b, /area/station/medical/abandoned) @@ -64578,31 +64531,17 @@ /obj/structure/sign/poster/official/random/directional/west, /turf/open/floor/iron/white, /area/station/medical/psychology) -"rfD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/spawner/random/maintenance, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/button/door/directional/east{ - id = "maint-shut"; - name = "Shutters Control" - }, -/turf/open/floor/plating, -/area/station/maintenance/floor2/port/aft) -"rfI" = ( -/obj/structure/closet/emcloset, +"rfN" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor3/port/fore) -"rfM" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/oil/streak, +/obj/effect/turf_decal/stripes, +/turf/open/floor/iron, +/area/station/maintenance/floor2/starboard/aft) +"rfP" = ( +/obj/effect/turf_decal/stripes, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/floor4/starboard) +/turf/open/floor/pod/dark, +/area/station/maintenance/floor2/starboard) "rfR" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 @@ -64715,12 +64654,6 @@ /obj/structure/closet/secure_closet/bar, /turf/open/floor/iron/checker, /area/station/service/bar) -"rhs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/landmark/start/cargo_technician, -/turf/open/floor/iron, -/area/station/cargo/warehouse) "rhu" = ( /obj/machinery/light/directional/east, /obj/structure/flora/bush/flowers_yw/style_random, @@ -64762,12 +64695,6 @@ /obj/structure/cable, /turf/open/floor/catwalk_floor, /area/station/maintenance/floor4/port/fore) -"rhN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/contraband/permabrig_weapon, -/obj/machinery/light/small/blacklight/directional/east, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard) "rhR" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -64797,17 +64724,16 @@ /obj/effect/decal/cleanable/robot_debris, /turf/open/floor/pod/dark, /area/station/maintenance/floor2/starboard/aft) +"rii" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/pod/light, +/area/station/maintenance/floor2/starboard/fore) "rim" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/iron, /area/station/cargo/miningdock) -"rio" = ( -/obj/structure/marker_beacon/burgundy, -/obj/effect/decal/cleanable/dirt, -/obj/structure/grille/broken, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard/aft) "rip" = ( /obj/effect/turf_decal/tile/blue/full, /obj/structure/closet/crate/freezer/blood, @@ -64908,17 +64834,17 @@ "rjD" = ( /turf/closed/wall, /area/station/hallway/floor1/aft) -"rkc" = ( -/obj/structure/table/wood, -/obj/item/plate/large{ - pixel_y = 2 - }, -/obj/item/food/pizza/dank{ - pixel_y = 6 - }, -/obj/structure/sign/poster/contraband/pwr_game/directional/east, -/turf/open/floor/carpet/purple, -/area/station/maintenance/floor1/port/aft) +"rjH" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/floor2/starboard) +"rjJ" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/pod/light, +/area/station/maintenance/solars/port/aft) "rkd" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -65023,18 +64949,6 @@ dir = 1 }, /area/station/hallway/floor4/aft) -"rmT" = ( -/obj/effect/turf_decal/tile/green/half{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/dark/textured_half{ - dir = 1 - }, -/area/station/hallway/secondary/exit/escape_pod) "rnd" = ( /obj/effect/turf_decal/trimline/white/warning{ dir = 1 @@ -65044,18 +64958,14 @@ }, /turf/open/floor/iron/dark/side, /area/station/hallway/secondary/entry) -"rne" = ( -/obj/structure/falsewall, +"rnj" = ( /obj/effect/decal/cleanable/dirt, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, /turf/open/floor/plating, -/area/station/maintenance/floor3/port/aft) -"rnl" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/station/service/abandoned_gambling_den) +/area/station/medical/abandoned) "rns" = ( /obj/structure/railing{ dir = 1 @@ -65139,14 +65049,6 @@ "roo" = ( /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/floor3/aft) -"rou" = ( -/obj/structure/window/reinforced/tinted/frosted/spawner/directional/east, -/turf/open/openspace, -/area/station/maintenance/floor2/port) -"rov" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/r_wall, -/area/station/maintenance/floor4/starboard) "roy" = ( /obj/item/toy/plush/beeplushie{ desc = "Maybe hugging this will make you feel better about yourself."; @@ -65329,6 +65231,11 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/pod/light, /area/station/maintenance/floor1/port) +"rrb" = ( +/obj/item/stack/tile/wood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/service/abandoned_gambling_den) "rrk" = ( /obj/structure/table/reinforced, /obj/effect/turf_decal/trimline/green/warning{ @@ -65407,14 +65314,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/wood, /area/station/commons/dorms/apartment1) -"rsz" = ( -/obj/structure/chair/wood{ - dir = 1 - }, -/obj/effect/turf_decal/siding/wood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet/green, -/area/station/service/abandoned_gambling_den) "rsH" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 4 @@ -65503,11 +65402,6 @@ }, /turf/open/floor/iron, /area/station/science/research/abandoned) -"rtH" = ( -/obj/machinery/vending/boozeomat/all_access, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/station/service/abandoned_gambling_den) "rtL" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -65550,6 +65444,11 @@ }, /turf/open/floor/iron/white, /area/station/medical/medbay/central) +"rum" = ( +/obj/structure/closet/firecloset/full, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/dark, +/area/station/maintenance/floor3/port) "ruo" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 1 @@ -65559,12 +65458,30 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/service/hydroponics) -"ruE" = ( -/obj/effect/turf_decal/siding/wood, -/obj/structure/sign/poster/contraband/have_a_puff/directional/north, -/obj/machinery/vending/snack/blue, -/turf/open/floor/iron/white, -/area/station/medical/break_room) +"rux" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/structure/electrified_grille, +/turf/open/floor/plating, +/area/station/maintenance/floor2/starboard/aft) +"ruD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/plumbed, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard/fore) +"ruM" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/item/folder/yellow, +/obj/item/wrench, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/cargo/warehouse) "ruQ" = ( /obj/effect/turf_decal/tile/blue/anticorner{ dir = 1 @@ -65607,6 +65524,29 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/station/maintenance/floor2/starboard/aft) +"rvi" = ( +/obj/machinery/light/dim/directional/south, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/pod/dark, +/area/station/maintenance/floor4/port) +"rvL" = ( +/obj/structure/window/reinforced/tinted/spawner/directional/south, +/obj/structure/mirror/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/sink/directional/west, +/turf/open/floor/iron/showroomfloor, +/area/station/commons/dorms/apartment2) +"rvV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/trimline/green/warning{ + dir = 1 + }, +/turf/open/floor/pod/dark, +/area/station/maintenance/floor2/starboard/aft) "rvZ" = ( /obj/effect/turf_decal/trimline/blue/corner{ dir = 8 @@ -65681,6 +65621,16 @@ dir = 1 }, /area/station/cargo/drone_bay) +"rwx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/crayon{ + icon_state = "body" + }, +/obj/effect/decal/cleanable/chem_pile, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/service/abandoned_gambling_den) "rwG" = ( /obj/effect/turf_decal/trimline/purple/line, /obj/machinery/airalarm/directional/north, @@ -65698,6 +65648,14 @@ /obj/structure/cable, /turf/open/floor/iron/white/small, /area/station/commons/fitness/recreation) +"rwO" = ( +/obj/effect/turf_decal/trimline/green/warning{ + dir = 10 + }, +/obj/machinery/airalarm/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor2/starboard) "rwP" = ( /obj/effect/turf_decal/siding/white/corner{ dir = 1 @@ -65742,6 +65700,24 @@ "rxn" = ( /turf/open/floor/iron, /area/station/hallway/floor1/aft) +"rxu" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/medical/abandoned) +"rxy" = ( +/obj/machinery/space_heater, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard) "rxz" = ( /obj/structure/window/reinforced/spawner/directional/east, /obj/effect/turf_decal/trimline/blue/filled/line{ @@ -65821,6 +65797,13 @@ /obj/machinery/flasher/directional/west, /turf/open/floor/iron/dark, /area/station/hallway/floor4/fore) +"ryK" = ( +/obj/effect/turf_decal/trimline/green/warning{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor2/starboard) "rza" = ( /obj/effect/turf_decal/trimline/brown/warning{ dir = 9 @@ -65853,14 +65836,11 @@ /obj/effect/spawner/random/engineering/tracking_beacon, /turf/open/floor/iron, /area/station/command/bridge) -"rzA" = ( -/obj/machinery/atmospherics/components/trinary/filter{ - dir = 4 - }, -/obj/effect/turf_decal/box, +"rzG" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/floor2/port) +/obj/effect/decal/cleanable/shreds, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard) "rzI" = ( /obj/effect/turf_decal/tile/purple/opposingcorners, /obj/structure/chair/stool/bar/directional/east, @@ -65870,6 +65850,15 @@ "rzK" = ( /turf/open/floor/iron/dark/side, /area/station/hallway/secondary/exit) +"rzV" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/smooth_corner{ + dir = 4 + }, +/area/station/maintenance/floor2/starboard) "rzW" = ( /obj/effect/turf_decal/siding/white{ dir = 6 @@ -65901,6 +65890,14 @@ /obj/machinery/firealarm/directional/north, /turf/open/floor/wood, /area/station/command/meeting_room) +"rAf" = ( +/obj/effect/turf_decal/trimline/blue/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/oil, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server/upper) "rAv" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 10 @@ -65908,6 +65905,14 @@ /obj/structure/closet/firecloset/full, /turf/open/floor/iron, /area/station/hallway/floor1/aft) +"rAx" = ( +/obj/machinery/iv_drip, +/obj/structure/mirror/directional/south, +/obj/structure/sign/poster/official/cleanliness/directional/east, +/obj/machinery/camera/autoname/directional/east, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/iron/dark, +/area/station/medical/surgery/fore) "rAy" = ( /turf/open/floor/pod/light, /area/station/maintenance/floor4/starboard) @@ -66049,14 +66054,6 @@ dir = 4 }, /area/station/security/prison/garden) -"rCK" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/smooth, -/area/station/cargo/warehouse) "rCN" = ( /obj/machinery/atmospherics/components/trinary/filter/flipped/layer2{ dir = 4 @@ -66100,6 +66097,12 @@ /obj/effect/turf_decal/tile/green/opposingcorners, /turf/open/floor/iron/white, /area/station/hallway/floor2/aft) +"rCY" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plating, +/area/station/service/abandoned_gambling_den) "rDh" = ( /obj/machinery/camera/autoname/directional/west, /obj/item/radio/intercom/directional/west, @@ -66215,6 +66218,18 @@ dir = 1 }, /area/station/hallway/floor1/fore) +"rEz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/purple, +/area/station/maintenance/floor1/port/aft) +"rEI" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/wood, +/area/station/service/abandoned_gambling_den) "rES" = ( /obj/effect/turf_decal/trimline/blue/warning{ dir = 1 @@ -66228,16 +66243,16 @@ /obj/machinery/door/firedoor/heavy, /turf/open/floor/iron/dark, /area/station/hallway/floor4/fore) -"rFg" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/service/abandoned_gambling_den) "rFC" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 }, /turf/open/floor/iron, /area/station/engineering/atmos/project) +"rFT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/port/aft) "rGb" = ( /obj/machinery/camera/directional/south{ c_tag = "Security- Central" @@ -66272,20 +66287,6 @@ /obj/machinery/camera/autoname/directional/south, /turf/open/floor/iron/smooth, /area/station/hallway/floor3/fore) -"rGC" = ( -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/medical/glass{ - name = "Medical Front Desk" - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/medical/abandoned) "rGF" = ( /obj/effect/turf_decal/bot, /obj/machinery/light/broken/directional/north, @@ -66314,6 +66315,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/smooth_large, /area/station/service/kitchen/abandoned) +"rGV" = ( +/obj/machinery/light_switch/directional/east, +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/maintenance/floor2/port/aft) "rGZ" = ( /obj/structure/table, /obj/effect/turf_decal/tile/red, @@ -66349,14 +66356,6 @@ /obj/machinery/vending/wardrobe/atmos_wardrobe, /turf/open/floor/iron, /area/station/engineering/atmos) -"rHA" = ( -/obj/effect/turf_decal/arrows/white{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron, -/area/station/maintenance/floor2/port/aft) "rHH" = ( /obj/item/bedsheet/double, /obj/structure/bed/double, @@ -66425,10 +66424,6 @@ /obj/machinery/newscaster/directional/south, /turf/open/floor/iron/dark/side, /area/station/hallway/secondary/entry) -"rIt" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/dark, -/area/station/maintenance/floor3/port) "rIK" = ( /obj/effect/spawner/random/vending/colavend, /turf/open/floor/iron/dark, @@ -66443,22 +66438,6 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/floor4/port/fore) -"rIY" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor3/port/aft) "rJd" = ( /obj/effect/turf_decal/tile/blue/opposingcorners, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -66482,15 +66461,6 @@ /obj/machinery/light/cold/no_nightlight/directional/west, /turf/open/floor/iron/dark, /area/station/science/breakroom) -"rJr" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth_half{ - dir = 1 - }, -/area/station/maintenance/floor2/starboard) "rJy" = ( /turf/open/floor/pod, /area/station/cargo/miningdock) @@ -66571,14 +66541,6 @@ }, /turf/open/floor/plating, /area/station/security/eva) -"rKG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/flashlight/flare, -/turf/open/floor/engine, -/area/station/maintenance/floor4/starboard/aft) "rKJ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -66677,6 +66639,12 @@ }, /turf/open/floor/pod/dark, /area/station/maintenance/floor1/port) +"rLY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/solars/starboard/aft) "rMl" = ( /obj/structure/chair/sofa/bench{ dir = 4 @@ -66741,6 +66709,12 @@ /obj/machinery/status_display/ai/directional/north, /turf/open/floor/iron/dark, /area/station/hallway/floor2/fore) +"rNl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/official/random/directional/south, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/iron, +/area/station/security/range) "rNm" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 @@ -66781,11 +66755,14 @@ /obj/effect/landmark/start/head_of_personnel, /turf/open/floor/wood, /area/station/command/heads_quarters/hop) -"rNL" = ( +"rNy" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/door/window/left/directional/south{ + name = "Storage" + }, /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/dim/directional/north, /turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard/fore) +/area/station/maintenance/floor4/starboard/aft) "rNN" = ( /obj/effect/mapping_helpers/airlock/access/all/command/captain, /obj/machinery/door/firedoor, @@ -66920,13 +66897,6 @@ /obj/item/shard, /turf/open/floor/engine, /area/station/maintenance/floor1/port/aft) -"rQf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/maintenance/floor3/starboard/aft) "rQh" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 @@ -66991,16 +66961,18 @@ /obj/structure/cable, /turf/open/floor/catwalk_floor, /area/station/maintenance/floor1/starboard/fore) -"rRg" = ( -/obj/structure/window/reinforced/tinted/frosted/spawner/directional/west, -/obj/structure/window/reinforced/tinted/frosted/spawner/directional/south, -/turf/open/openspace, -/area/station/maintenance/floor2/port) "rRh" = ( /obj/structure/closet/radiation, /obj/machinery/atmospherics/pipe/smart/simple/orange/visible, /turf/open/floor/engine, /area/station/engineering/supermatter/room) +"rRl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/medical/chemistry) "rRp" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -67152,18 +67124,6 @@ /obj/machinery/space_heater, /turf/open/floor/pod/light, /area/station/maintenance/floor1/port) -"rTv" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor3/port/aft) "rTw" = ( /obj/effect/turf_decal/stripes/corner, /obj/effect/turf_decal/tile/red{ @@ -67222,21 +67182,6 @@ }, /turf/open/floor/engine, /area/station/science/cytology) -"rUq" = ( -/obj/machinery/camera/autoname/directional/south, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor1/port/aft) -"rUr" = ( -/obj/effect/turf_decal/tile/red/diagonal_edge, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/iron/dark/textured_large, -/area/station/security/checkpoint/escape) "rUD" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -67286,12 +67231,36 @@ }, /turf/open/floor/iron/dark/side, /area/station/hallway/floor1/aft) +"rVj" = ( +/obj/effect/turf_decal/tile/red/anticorner{ + dir = 1 + }, +/obj/structure/bed/dogbed{ + desc = "A comfy-looking mouse bed."; + name = "Robert's bed" + }, +/mob/living/basic/mouse{ + desc = "Your only friend in this place"; + name = "Robert" + }, +/obj/structure/window/reinforced/tinted/frosted/spawner/directional/north, +/obj/structure/window/reinforced/tinted/frosted/spawner/directional/west, +/turf/open/floor/stone, +/area/station/maintenance/floor1/port) "rVk" = ( /turf/open/floor/iron, /area/station/security/courtroom) "rVy" = ( /turf/open/floor/plating, /area/station/maintenance/floor4/port/fore) +"rVC" = ( +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 4 + }, +/obj/effect/turf_decal/box, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/floor2/port) "rVI" = ( /obj/structure/rack, /obj/item/flashlight, @@ -67338,6 +67307,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/hallway/secondary/service) +"rWx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/turret_protected/aisat) "rWz" = ( /obj/effect/turf_decal/tile/red/anticorner/contrasted{ dir = 1 @@ -67408,24 +67383,22 @@ dir = 8 }, /area/station/hallway/floor3/fore) -"rYa" = ( -/obj/effect/turf_decal/tile/red/half{ - dir = 8 +"rYb" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 4 }, -/obj/structure/window/reinforced/tinted/frosted/spawner/directional/west, -/turf/open/floor/stone, -/area/station/maintenance/floor1/port) +/obj/machinery/firealarm/directional/north, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor2/starboard) "rYw" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, /turf/open/floor/catwalk_floor/iron, /area/station/maintenance/solars/starboard/fore) -"rYA" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/crate, -/turf/open/floor/iron/smooth, -/area/station/cargo/warehouse) "rYM" = ( /obj/effect/turf_decal/trimline/white/line{ dir = 4 @@ -67492,6 +67465,15 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/hallway/floor1/fore) +"rZJ" = ( +/obj/effect/turf_decal/tile/blue/full, +/obj/machinery/power/floodlight, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/abandoned) "rZS" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 @@ -67531,14 +67513,6 @@ /obj/structure/cable, /turf/open/floor/iron/kitchen, /area/station/service/kitchen) -"sat" = ( -/obj/effect/decal/remains/human, -/obj/effect/turf_decal/tile/red/half{ - dir = 1 - }, -/obj/structure/window/reinforced/tinted/frosted/spawner/directional/north, -/turf/open/floor/stone, -/area/station/maintenance/floor1/port) "saA" = ( /obj/effect/turf_decal/siding/thinplating_new{ dir = 1 @@ -67556,10 +67530,6 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/station/maintenance/floor3/starboard/fore) -"saL" = ( -/obj/structure/window/reinforced/spawner/directional/south, -/turf/open/floor/grass, -/area/station/science/xenobiology) "saR" = ( /obj/structure/table/wood, /obj/item/storage/fancy/cigarettes/cigpack_uplift{ @@ -67581,11 +67551,6 @@ }, /turf/open/floor/plating, /area/station/maintenance/floor2/starboard/fore) -"sbn" = ( -/obj/structure/barricade/sandbags, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/port) "sbq" = ( /obj/effect/turf_decal/trimline/green/line, /obj/effect/turf_decal/trimline/green/line{ @@ -67765,12 +67730,6 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/command/teleporter) -"sdO" = ( -/obj/item/stack/sheet/iron, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/medical/abandoned) "sdQ" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -67780,6 +67739,11 @@ }, /turf/open/floor/engine, /area/station/hallway/secondary/entry) +"sdR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/dim/directional/east, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/port) "sdV" = ( /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 4 @@ -67791,14 +67755,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/station/hallway/floor3/aft) -"see" = ( -/obj/effect/turf_decal/tile/green/full, -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair/comfy/shuttle{ - dir = 8 - }, -/turf/open/floor/iron/dark/textured_large, -/area/station/hallway/secondary/exit/escape_pod) "sei" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -67808,13 +67764,14 @@ dir = 8 }, /area/station/hallway/floor3/fore) -"sff" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ +"seU" = ( +/obj/structure/chair/wood{ dir = 1 }, +/obj/effect/turf_decal/siding/wood, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/station/maintenance/floor2/starboard) +/turf/open/floor/carpet/green, +/area/station/service/abandoned_gambling_den) "sfk" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -67859,29 +67816,13 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron/dark, /area/station/security/brig) -"sfM" = ( -/obj/effect/mob_spawn/corpse/human/skeleton{ - pixel_y = 14 - }, -/obj/effect/turf_decal/tile/red/half{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted/frosted/spawner/directional/east, -/turf/open/floor/stone, -/area/station/maintenance/floor1/port) -"sfR" = ( -/obj/machinery/photocopier, +"sgg" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood/parquet, -/area/station/service/lawoffice) -"sfS" = ( -/obj/effect/turf_decal/trimline/green/line{ - dir = 1 +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 }, -/obj/machinery/door/firedoor/border_only, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/hallway/floor3/fore) +/turf/open/floor/pod, +/area/station/maintenance/floor4/port/fore) "sgJ" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -67896,6 +67837,12 @@ }, /turf/open/floor/iron/textured_half, /area/station/hallway/secondary/entry) +"sgZ" = ( +/obj/structure/rack, +/obj/item/paint/paint_remover, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard/fore) "shd" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 1 @@ -67971,6 +67918,17 @@ /obj/machinery/airalarm/directional/north, /turf/open/floor/iron/dark, /area/station/engineering/atmos/project) +"sir" = ( +/obj/effect/landmark/generic_maintenance_landmark, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/floor4/starboard) "siu" = ( /obj/structure/chair/sofa/bench/right, /turf/open/floor/iron/textured_large, @@ -68020,6 +67978,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/station/security/prison/work) +"siU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard/fore) "siY" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -68118,6 +68082,11 @@ }, /turf/open/floor/iron/dark, /area/station/security/brig) +"skL" = ( +/obj/item/radio/intercom/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/station/command/heads_quarters/hop) "skU" = ( /turf/open/floor/iron/dark/side{ dir = 8 @@ -68304,11 +68273,6 @@ }, /turf/open/floor/iron, /area/station/hallway/floor1/aft) -"sow" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/portable_atmospherics/scrubber, -/turf/open/floor/pod, -/area/station/maintenance/floor4/port/fore) "soy" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -68353,13 +68317,6 @@ /obj/machinery/duct, /turf/open/floor/iron/dark/side, /area/station/security/brig) -"soZ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/floor4/starboard/aft) "spb" = ( /obj/machinery/newscaster/directional/south, /obj/machinery/light_switch/directional/west, @@ -68417,6 +68374,20 @@ /obj/structure/sink/directional/west, /turf/open/floor/iron, /area/station/commons/toilet) +"spX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plating, +/area/station/service/abandoned_gambling_den) +"sqc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/flashlight/flare, +/turf/open/floor/engine, +/area/station/maintenance/floor4/starboard/aft) "sqi" = ( /obj/effect/turf_decal/siding/wood, /obj/structure/cable, @@ -68454,6 +68425,14 @@ /obj/machinery/growing/tray, /turf/open/floor/iron/dark, /area/station/service/hydroponics/garden) +"sqI" = ( +/obj/item/reagent_containers/dropper, +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard/fore) "sqK" = ( /obj/structure/railing{ dir = 4 @@ -68464,6 +68443,12 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron, /area/station/cargo/storage) +"sqV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/solars/port/aft) "srk" = ( /obj/effect/turf_decal/tile/purple{ dir = 8 @@ -68472,17 +68457,6 @@ /obj/machinery/growing/tray, /turf/open/floor/iron/white, /area/station/cargo/miningdock) -"srq" = ( -/obj/effect/turf_decal/trimline/blue/corner{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server/upper) "srz" = ( /obj/machinery/door/airlock/atmos{ name = "Atmospherics" @@ -68526,16 +68500,6 @@ }, /turf/open/floor/iron/kitchen/herringbone, /area/station/service/kitchen/diner) -"ssi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/dark/textured_edge{ - dir = 8 - }, -/area/station/medical/chemistry) "ssj" = ( /turf/open/floor/iron/kitchen/herringbone, /area/station/service/kitchen) @@ -68667,12 +68631,6 @@ /obj/structure/girder/displaced, /turf/open/floor/pod/light, /area/station/maintenance/floor1/port/fore) -"sua" = ( -/obj/machinery/light/dim/directional/north, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard/aft) "suh" = ( /obj/structure/table, /obj/machinery/microwave, @@ -68780,19 +68738,32 @@ dir = 8 }, /area/station/hallway/secondary/exit) -"svu" = ( +"svz" = ( +/obj/structure/rack, +/obj/item/trash/syndi_cakes, /obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor1/port/aft) +"svA" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/structure/electrified_grille, -/turf/open/floor/plating, -/area/station/maintenance/floor2/starboard/aft) -"svy" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 6 +/obj/item/weldingtool/mini, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/pod/dark, +/area/station/maintenance/floor4/starboard) +"svH" = ( +/obj/machinery/door/airlock{ + name = "Escape Pod A" + }, +/obj/effect/turf_decal/tile/green/half{ + dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor2/starboard/aft) +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/iron/dark/textured_half{ + dir = 1 + }, +/area/station/hallway/secondary/exit/escape_pod) "svI" = ( /obj/machinery/door/poddoor/incinerator_ordmix, /turf/open/openspace, @@ -68847,6 +68818,11 @@ /obj/structure/cable, /turf/open/floor/iron/smooth_edge, /area/station/science/research/abandoned) +"swg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/sandbags, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/port) "swm" = ( /obj/machinery/air_sensor/nitrogen_tank, /obj/effect/turf_decal/trimline/red/line, @@ -68868,6 +68844,12 @@ /obj/item/radio/intercom/directional/south, /turf/open/floor/iron, /area/station/engineering/atmos) +"swv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/structure/tank_holder, +/turf/open/floor/pod/light, +/area/station/maintenance/floor2/port/aft) "swI" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 8 @@ -68879,17 +68861,21 @@ /obj/item/radio/intercom/directional/south, /turf/open/floor/iron/dark, /area/station/hallway/secondary/exit/departure_lounge) -"swM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate/freezer, -/obj/item/stack/medical/suture, -/obj/item/stack/medical/gauze/twelve, -/obj/item/stack/medical/bone_gel, -/turf/open/floor/iron/white, -/area/station/maintenance/floor3/starboard/aft) "swT" = ( /turf/closed/wall/r_wall, /area/station/science/circuits) +"swX" = ( +/obj/machinery/door/firedoor, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/north, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/hallway/secondary/exit/escape_pod) "sxe" = ( /obj/effect/turf_decal/tile/blue/opposingcorners{ dir = 1 @@ -68951,19 +68937,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/station/maintenance/disposal) -"sxK" = ( -/obj/effect/spawner/random/structure/crate, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/floor2/starboard/fore) -"sxM" = ( -/obj/structure/sign/poster/official/cleanliness/directional/west, -/obj/machinery/holopad, -/obj/machinery/camera/directional/west{ - name = "Security - Medical" - }, -/turf/open/floor/iron/white, -/area/station/security/medical) "sxZ" = ( /obj/structure/closet/firecloset/full, /turf/open/floor/pod/dark, @@ -69023,14 +68996,6 @@ name = "lab floor" }, /area/station/science/genetics) -"syE" = ( -/obj/machinery/door/airlock/hatch{ - name = "Fighter Airlock" - }, -/obj/effect/mapping_helpers/airlock/locked, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/mineral/plastitanium/red, -/area/station/maintenance/floor4/starboard/aft) "syP" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -69048,17 +69013,17 @@ /obj/structure/cable, /turf/open/misc/dirt/jungle, /area/station/service/hydroponics/garden/abandoned) -"szl" = ( -/obj/machinery/computer/slot_machine, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet/green, -/area/station/service/abandoned_gambling_den) -"szn" = ( -/obj/structure/rack, +"szo" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, /obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/food_or_drink/cups, +/obj/structure/closet/wardrobe/mixed, /turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard) +/area/station/maintenance/floor4/port/fore) "szp" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 1 @@ -69066,20 +69031,6 @@ /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, @@ -69172,6 +69123,12 @@ /obj/machinery/duct, /turf/open/floor/wood/tile, /area/station/command/heads_quarters/captain/private) +"sAt" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/medical/abandoned) "sAv" = ( /obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden{ dir = 4 @@ -69235,6 +69192,11 @@ /obj/machinery/light/cold/no_nightlight/directional/east, /turf/open/floor/iron/dark, /area/station/security/checkpoint/second) +"sBr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/structure/crate_abandoned, +/turf/open/floor/pod/light, +/area/station/maintenance/floor1/port/aft) "sBt" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -69249,17 +69211,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/station/medical/abandoned) -"sBy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/spawner/random/structure/grille, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/port/aft) -"sBE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/maintenance/floor3/starboard/aft) "sBF" = ( /obj/effect/turf_decal/trimline/green/corner{ dir = 1 @@ -69290,17 +69241,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/catwalk_floor, /area/station/maintenance/floor1/starboard/fore) -"sBU" = ( -/obj/structure/sign/poster/contraband/eat/directional/west, -/turf/open/floor/carpet/royalblue, -/area/station/medical/break_room) -"sBY" = ( -/obj/structure/sign/poster/contraband/hacking_guide/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/machinery/duct, -/turf/open/floor/iron/dark/textured, -/area/station/commons/fitness) "sCe" = ( /obj/effect/turf_decal/siding/wood, /obj/structure/table/wood, @@ -69338,6 +69278,11 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/carpet, /area/station/command/heads_quarters/captain) +"sCP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard/fore) "sCQ" = ( /turf/open/floor/iron/dark, /area/station/ai_monitored/turret_protected/aisat) @@ -69348,21 +69293,6 @@ }, /turf/open/floor/plating, /area/station/maintenance/solars/port/aft) -"sDp" = ( -/obj/effect/turf_decal/trimline/green/warning{ - dir = 5 - }, -/obj/machinery/firealarm/directional/east, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor2/starboard) -"sDE" = ( -/obj/structure/table/reinforced/plastitaniumglass, -/obj/machinery/recharger, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/west, -/turf/open/floor/mineral/plastitanium/red, -/area/station/maintenance/floor4/starboard/aft) "sDK" = ( /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /obj/machinery/door/airlock/hatch{ @@ -69436,11 +69366,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/kitchen, /area/station/service/kitchen/abandoned) -"sEP" = ( -/obj/item/toy/plush/bubbleplush, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/fakebasalt, -/area/station/maintenance/floor3/port) "sFa" = ( /turf/open/floor/wood, /area/station/command/meeting_room) @@ -69469,16 +69394,6 @@ }, /turf/open/floor/wood, /area/station/service/theater) -"sFr" = ( -/obj/structure/table/reinforced, -/obj/item/plate{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/item/knife/butcher, -/obj/structure/sign/poster/official/cleanliness/directional/north, -/turf/open/floor/pod/light, -/area/station/maintenance/floor1/port) "sFt" = ( /turf/open/floor/iron/kitchen, /area/station/service/kitchen) @@ -69515,11 +69430,6 @@ /obj/machinery/airalarm/directional/west, /turf/open/floor/wood/tile, /area/station/commons/fitness/recreation) -"sGN" = ( -/obj/item/stack/ducts/fifty, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard/aft) "sGR" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 @@ -69551,6 +69461,15 @@ /obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/pod/dark, /area/station/maintenance/floor2/starboard/aft) +"sHh" = ( +/obj/structure/window/reinforced/tinted/spawner/directional/south, +/obj/structure/mirror/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/sink/directional/east, +/turf/open/floor/iron/showroomfloor, +/area/station/commons/dorms/apartment1) "sHk" = ( /obj/effect/turf_decal/trimline/purple/line{ dir = 1 @@ -69575,21 +69494,6 @@ }, /turf/open/floor/iron/dark/textured, /area/station/security/checkpoint/second) -"sHv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/floor2/starboard) -"sHB" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor2/starboard) "sHJ" = ( /obj/structure/table, /obj/item/folder/blue{ @@ -69616,6 +69520,22 @@ /obj/item/pipe_dispenser, /turf/open/floor/iron/dark, /area/station/engineering/supermatter) +"sHM" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor3/port/aft) "sHP" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -69738,11 +69658,6 @@ /obj/machinery/airalarm/directional/west, /turf/open/floor/plastic, /area/station/security/prison/shower) -"sIZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/firecloset, -/turf/open/floor/pod/light, -/area/station/maintenance/floor2/port/aft) "sJg" = ( /obj/machinery/button/door/directional/north{ id = "dorms_lux_1_bolts"; @@ -69825,6 +69740,11 @@ }, /turf/open/space/openspace, /area/space/nearstation) +"sKq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/dim/directional/east, +/turf/open/floor/pod/dark, +/area/station/maintenance/floor3/port/aft) "sKt" = ( /turf/closed/wall, /area/station/maintenance/floor1/starboard/aft) @@ -69839,12 +69759,6 @@ /obj/effect/spawner/structure/window/hollow/middle, /turf/open/floor/plating, /area/station/maintenance/floor2/starboard) -"sKE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/grille, -/turf/open/floor/plating, -/area/station/maintenance/floor1/port) "sKI" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 1 @@ -69889,6 +69803,14 @@ dir = 8 }, /area/station/hallway/floor3/fore) +"sKP" = ( +/obj/structure/marker_beacon/burgundy, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard/aft) "sKQ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/railing{ @@ -69937,15 +69859,14 @@ /obj/structure/extinguisher_cabinet/directional/north, /turf/open/floor/wood/tile, /area/station/service/library) -"sLe" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/engine, -/area/station/maintenance/floor4/starboard/aft) "sLl" = ( /obj/effect/spawner/structure/window/hollow/end, /turf/open/floor/plating, /area/station/maintenance/floor2/starboard) +"sLn" = ( +/obj/structure/window/reinforced/tinted/frosted/spawner/directional/south, +/turf/open/openspace, +/area/station/maintenance/floor4/port/aft) "sLA" = ( /obj/effect/turf_decal/tile/red/opposingcorners{ dir = 1 @@ -69987,48 +69908,10 @@ /obj/machinery/airalarm/directional/north, /turf/open/floor/iron/smooth, /area/station/science/research/abandoned) -"sLY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/broken/directional/east, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/rack, -/obj/item/stack/sheet/iron{ - amount = 30 - }, -/obj/item/stack/sheet/glass{ - amount = 30 - }, -/obj/item/stack/package_wrap, -/obj/item/flashlight/flare, -/turf/open/floor/pod, -/area/station/maintenance/floor4/starboard/aft) "sMb" = ( /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 - }, -/obj/machinery/atmospherics/pipe/smart/simple/supply/visible/layer4{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) "sMo" = ( /obj/structure/chair/office/light{ dir = 8 @@ -70046,6 +69929,13 @@ }, /turf/open/floor/iron/dark, /area/station/security/office) +"sMv" = ( +/obj/effect/spawner/random/trash/graffiti{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/white, +/area/station/medical/abandoned) "sMx" = ( /obj/effect/turf_decal/trimline/purple/line{ dir = 9 @@ -70106,6 +69996,13 @@ }, /turf/open/floor/iron/textured_large, /area/station/cargo/sorting) +"sNz" = ( +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/maintenance/floor2/starboard/aft) "sNE" = ( /obj/machinery/vending/cigarette, /turf/open/floor/iron, @@ -70136,6 +70033,17 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white, /area/station/command/heads_quarters/cmo) +"sOl" = ( +/obj/machinery/light/dim/directional/west, +/obj/effect/turf_decal/trimline/red/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/plumbed{ + dir = 4 + }, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard/aft) "sOs" = ( /obj/machinery/airalarm/directional/south, /obj/structure/disposalpipe/segment{ @@ -70153,15 +70061,6 @@ "sOy" = ( /turf/closed/wall/r_wall, /area/station/ai_monitored/turret_protected/aisat_interior) -"sOB" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard/aft) -"sOD" = ( -/obj/effect/turf_decal/trimline/brown/warning, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/dark, -/area/station/maintenance/floor3/port/aft) "sOG" = ( /obj/machinery/light/directional/west, /obj/item/radio/intercom/directional/west, @@ -70206,12 +70105,6 @@ }, /turf/open/floor/iron/white, /area/station/medical/virology) -"sPs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/structure/electrified_grille, -/turf/open/floor/plating, -/area/station/ai_monitored/security/armory) "sPu" = ( /obj/effect/turf_decal/siding/wood{ dir = 6 @@ -70228,6 +70121,14 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/station/maintenance/floor1/port/fore) +"sPO" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/smooth, +/area/station/cargo/warehouse) "sPZ" = ( /obj/machinery/door/airlock/hatch{ name = "Maintenance Hatch" @@ -70235,13 +70136,6 @@ /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/open/floor/pod/light, /area/station/maintenance/floor1/starboard/aft) -"sQa" = ( -/obj/effect/turf_decal/stripes{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/floor2/starboard/aft) "sQj" = ( /obj/structure/table, /obj/item/gun/energy/laser/practice{ @@ -70561,19 +70455,6 @@ dir = 10 }, /area/station/security/prison) -"sUZ" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/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/pod/light, -/area/station/maintenance/floor4/port/fore) "sVb" = ( /obj/machinery/power/floodlight, /obj/structure/cable, @@ -70591,17 +70472,6 @@ /obj/structure/sign/warning/yes_smoking/circle/directional/west, /turf/open/floor/wood, /area/station/hallway/floor3/fore) -"sVi" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/wardrobe/mixed, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/port/fore) "sVp" = ( /obj/structure/transit_tube/curved{ dir = 4 @@ -70633,6 +70503,13 @@ }, /turf/open/floor/plating, /area/station/medical/virology) +"sVG" = ( +/obj/machinery/biogenerator, +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/station/service/hydroponics) "sVQ" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 5 @@ -70698,10 +70575,6 @@ }, /turf/open/floor/plating, /area/station/security/lockers) -"sWo" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/security/range) "sWs" = ( /obj/structure/lattice/catwalk, /obj/structure/marker_beacon/burgundy, @@ -70791,6 +70664,12 @@ }, /turf/open/floor/iron/dark, /area/station/security/office) +"sXx" = ( +/obj/machinery/light/dim/directional/south, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/pod/dark, +/area/station/maintenance/floor3/port) "sXE" = ( /obj/effect/turf_decal/trimline/yellow/line, /obj/machinery/navbeacon{ @@ -70799,6 +70678,16 @@ }, /turf/open/floor/iron, /area/station/hallway/floor1/fore) +"sXJ" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/commons/storage/primary) "sXM" = ( /obj/machinery/recharger, /obj/structure/table, @@ -70955,11 +70844,24 @@ }, /turf/open/floor/mineral/silver, /area/station/service/chapel) +"sZg" = ( +/obj/structure/table/wood/poker, +/obj/effect/spawner/random/entertainment/dice, +/obj/machinery/airalarm/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/green, +/area/station/service/abandoned_gambling_den) "sZj" = ( /obj/item/clothing/gloves/boxing, /obj/structure/rack, /turf/open/floor/pod/dark, /area/station/maintenance/floor1/starboard/aft) +"sZs" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/blue, +/area/station/maintenance/floor3/port/aft) "sZx" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark/textured, @@ -70985,12 +70887,6 @@ /obj/structure/cable, /turf/open/floor/eighties, /area/station/commons/fitness/recreation/entertainment) -"sZF" = ( -/obj/machinery/atm/directional/north, -/turf/open/floor/iron/dark/side{ - dir = 9 - }, -/area/station/hallway/floor4/fore) "sZH" = ( /obj/structure/mirror/directional/west, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -71007,16 +70903,6 @@ dir = 8 }, /area/station/hallway/floor1/fore) -"sZL" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 4 - }, -/obj/machinery/light/directional/east, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/station/commons/storage/primary) "sZO" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 9 @@ -71030,6 +70916,17 @@ }, /turf/open/floor/iron/dark/textured, /area/station/medical/cryo) +"sZW" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/mass_driver/ordnance{ + dir = 1 + }, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/west, +/turf/open/floor/iron/dark/textured, +/area/station/science/ordnance/storage) "sZX" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 6 @@ -71037,13 +70934,6 @@ /obj/structure/sign/poster/official/random/directional/east, /turf/open/floor/iron, /area/station/commons/vacant_room/commissary) -"sZY" = ( -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/floor2/port) "tal" = ( /obj/structure/railing, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -71060,10 +70950,6 @@ "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{ @@ -71074,12 +70960,6 @@ /obj/effect/mapping_helpers/airlock/unres, /turf/open/floor/plating, /area/station/maintenance/floor1/port/aft) -"taM" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard/aft) "taW" = ( /obj/structure/table/wood, /obj/effect/spawner/random/entertainment/musical_instrument, @@ -71112,20 +70992,10 @@ /obj/machinery/light/dim/directional/north, /turf/open/floor/catwalk_floor, /area/station/maintenance/floor3/port) -"tbu" = ( -/obj/effect/spawner/random/trash/hobo_squat, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/medical/abandoned) "tbw" = ( /obj/effect/spawner/structure/window/hollow/reinforced/directional, /turf/open/floor/plating, /area/station/medical/psychology) -"tby" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/sandbags, -/turf/open/floor/engine, -/area/station/maintenance/floor4/starboard/aft) "tbG" = ( /obj/structure/closet/secure_closet/atmospherics, /obj/effect/turf_decal/box, @@ -71138,6 +71008,11 @@ }, /turf/open/floor/carpet/neon/simple/pink/nodots, /area/station/maintenance/floor2/port/fore) +"tbV" = ( +/obj/structure/window/reinforced/tinted/frosted/spawner/directional/south, +/obj/structure/window/reinforced/tinted/frosted/spawner/directional/west, +/turf/open/openspace, +/area/station/maintenance/floor3/port) "tbX" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk, @@ -71173,6 +71048,16 @@ }, /turf/open/floor/iron, /area/station/hallway/floor3/fore) +"tcz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/spawner/random/contraband/landmine, +/turf/open/floor/wood, +/area/station/service/abandoned_gambling_den) "tcE" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -71233,13 +71118,6 @@ name = "lab floor" }, /area/station/science/genetics) -"tde" = ( -/obj/effect/spawner/random/trash/garbage{ - spawn_scatter_radius = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/port) "tdf" = ( /obj/machinery/atmospherics/pipe/smart/simple/dark/visible/layer2{ dir = 4 @@ -71251,6 +71129,13 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/pod/dark, /area/station/maintenance/floor2/port) +"tdu" = ( +/obj/effect/turf_decal/trimline/blue/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server/upper) "tdw" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 @@ -71269,20 +71154,6 @@ }, /turf/open/floor/carpet/red, /area/station/service/theater) -"tdA" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/green/warning{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/dim/directional/west, -/turf/open/floor/pod/light, -/area/station/maintenance/floor2/starboard) "tdF" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -71319,14 +71190,6 @@ /obj/effect/landmark/start/atmospheric_technician, /turf/open/floor/iron/corner, /area/station/engineering/atmos/office) -"tez" = ( -/obj/machinery/atmospherics/components/unary/portables_connector{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/floor2/port) "teB" = ( /obj/effect/turf_decal/stripes{ dir = 4 @@ -71342,6 +71205,11 @@ }, /turf/open/floor/pod/dark, /area/station/maintenance/floor2/starboard/aft) +"teK" = ( +/obj/machinery/camera/autoname/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor1/port/aft) "teN" = ( /obj/effect/turf_decal/siding/wood, /turf/open/floor/iron/dark, @@ -71379,6 +71247,16 @@ }, /turf/open/floor/plating, /area/station/service/chapel/office) +"teX" = ( +/obj/effect/turf_decal/trimline/green/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/dark, +/area/station/maintenance/floor2/starboard) "tff" = ( /obj/effect/turf_decal/trimline/green/filled/line, /obj/effect/turf_decal/trimline/green/filled/line{ @@ -71436,6 +71314,11 @@ /obj/structure/sign/departments/medbay/alt/directional/south, /turf/open/floor/iron/white/textured, /area/station/medical/treatment_center) +"tgn" = ( +/obj/structure/grille, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/security/checkpoint) "tgq" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 4 @@ -71451,12 +71334,27 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/carpet/green, /area/station/service/abandoned_gambling_den) -"tgP" = ( -/obj/effect/turf_decal/tile/green/full, +"tgF" = ( +/obj/machinery/airalarm/directional/south, +/obj/effect/decal/cleanable/blood/drip, /obj/effect/decal/cleanable/dirt, -/obj/structure/closet/firecloset/full, -/turf/open/floor/iron/dark/textured_large, -/area/station/hallway/secondary/exit/escape_pod) +/turf/open/floor/iron, +/area/station/maintenance/floor3/starboard/aft) +"tgN" = ( +/obj/structure/rack, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/food_or_drink/condiment, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard) +"tgR" = ( +/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) "tgS" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -71514,14 +71412,6 @@ /obj/effect/spawner/random/structure/closet_maintenance, /turf/open/floor/pod/dark, /area/station/maintenance/floor3/port) -"thU" = ( -/obj/effect/turf_decal/trimline/red/line{ - dir = 9 - }, -/obj/effect/spawner/random/structure/crate_loot, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard/aft) "tic" = ( /turf/open/floor/wood, /area/station/commons/dorms/apartment2) @@ -71538,11 +71428,6 @@ /obj/structure/sign/poster/contraband/grey_tide, /turf/closed/wall, /area/station/maintenance/floor3/port/aft) -"tiC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/oil, -/turf/open/floor/pod/light, -/area/station/maintenance/floor1/port/fore) "tiG" = ( /obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, @@ -71592,18 +71477,6 @@ dir = 4 }, /area/station/maintenance/floor4/port/fore) -"tji" = ( -/obj/effect/turf_decal/tile/green/half{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/dark/textured_half{ - dir = 1 - }, -/area/station/hallway/secondary/exit/escape_pod) "tjq" = ( /obj/machinery/light/directional/east, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -71623,17 +71496,12 @@ dir = 8 }, /area/station/service/chapel) -"tjJ" = ( -/obj/effect/turf_decal/caution/stand_clear/white{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/white/line{ - dir = 4 - }, -/obj/effect/spawner/random/decoration/glowstick, -/turf/open/floor/pod, -/area/station/maintenance/floor4/starboard/aft) +"tjI" = ( +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/window/spawner/directional/north, +/obj/structure/window/spawner/directional/south, +/turf/open/floor/grass, +/area/station/hallway/secondary/exit/departure_lounge) "tjN" = ( /turf/open/floor/iron, /area/station/maintenance/solars/starboard/fore) @@ -71677,6 +71545,12 @@ "tkB" = ( /turf/open/floor/catwalk_floor/iron_dark, /area/station/maintenance/floor3/starboard) +"tkD" = ( +/obj/machinery/atm/directional/north, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/hallway/floor4/fore) "tkE" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -71755,11 +71629,6 @@ /obj/machinery/light/directional/north, /turf/open/floor/iron, /area/station/engineering/atmos/hfr_room) -"tlr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/textured_large, -/area/station/hallway/secondary/exit/departure_lounge) "tlt" = ( /turf/open/floor/catwalk_floor, /area/station/maintenance/floor2/port/fore) @@ -71856,6 +71725,10 @@ }, /turf/open/floor/iron/white, /area/station/science/lower) +"tmK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine, +/area/station/maintenance/floor4/starboard/aft) "tmM" = ( /obj/machinery/door/airlock/hatch{ name = "Maintenance Hatch" @@ -71893,6 +71766,15 @@ /obj/effect/spawner/random/trash/graffiti, /turf/open/floor/pod/light, /area/station/maintenance/floor3/starboard/aft) +"tnu" = ( +/obj/structure/table, +/obj/effect/spawner/random/food_or_drink/snack, +/obj/effect/spawner/random/food_or_drink/snack, +/obj/item/food/gumball, +/obj/item/food/gumball, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard) "tnx" = ( /obj/machinery/camera/autoname/directional/east, /obj/structure/sign/departments/science/alt/directional/east, @@ -71919,17 +71801,6 @@ /obj/effect/spawner/random/contraband/prison, /turf/open/floor/iron/dark, /area/station/maintenance/floor2/starboard/aft) -"tnN" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/firealarm/directional/north, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/dark, -/area/station/maintenance/floor2/starboard) "tnS" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -72007,6 +71878,16 @@ /obj/effect/turf_decal/tile/red/fourcorners, /turf/open/floor/iron/dark, /area/station/security/range) +"toB" = ( +/obj/effect/turf_decal/trimline/green/warning{ + dir = 10 + }, +/obj/machinery/airalarm/directional/east, +/obj/structure/closet/emcloset, +/obj/effect/spawner/random/maintenance, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/dark, +/area/station/maintenance/floor2/starboard) "toC" = ( /obj/effect/turf_decal/tile/yellow/half/contrasted{ dir = 1 @@ -72020,14 +71901,6 @@ "toH" = ( /turf/open/openspace, /area/station/maintenance/floor3/port/fore) -"toK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/garbage{ - spawn_loot_count = 3; - spawn_scatter_radius = 1 - }, -/turf/open/floor/pod/light, -/area/station/maintenance/floor3/starboard/aft) "toO" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -72042,6 +71915,11 @@ /obj/structure/cable, /turf/open/floor/eighties, /area/station/commons/fitness/recreation/entertainment) +"toW" = ( +/obj/structure/closet/firecloset, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/engineering/lobby) "toX" = ( /obj/machinery/door/airlock/grunge{ name = "Prison Forestry" @@ -72098,16 +71976,11 @@ /obj/effect/baseturf_helper/reinforced_plating/ceiling, /turf/open/floor/iron/white, /area/station/medical/virology) -"tqa" = ( -/obj/structure/table/reinforced, -/obj/structure/barricade/wooden{ - name = "wooden barricade (KEEP OUT)" - }, -/obj/structure/window/reinforced/tinted/spawner/directional/south, -/obj/structure/window/reinforced/tinted/spawner/directional/north, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/station/medical/chemistry) +"tqd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/sandbags, +/turf/open/floor/engine, +/area/station/maintenance/floor4/starboard/aft) "tqi" = ( /obj/structure/table/wood, /obj/item/paper_bin, @@ -72354,13 +72227,6 @@ }, /turf/open/floor/iron/white, /area/station/medical/abandoned) -"tua" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/medical/abandoned) "tuc" = ( /obj/effect/turf_decal/caution/stand_clear, /obj/effect/turf_decal/siding/dark_blue, @@ -72477,11 +72343,6 @@ /obj/machinery/light/cold/no_nightlight/directional/east, /turf/open/floor/iron/dark, /area/station/security/detectives_office/private_investigators_office) -"tvB" = ( -/obj/structure/table/wood, -/obj/structure/sign/poster/contraband/pwr_game/directional/north, -/turf/open/floor/wood, -/area/station/maintenance/floor2/starboard) "tvH" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, @@ -72579,11 +72440,6 @@ /obj/structure/sign/warning/directional/south, /turf/open/floor/iron/dark/textured, /area/station/science/ordnance/storage) -"twS" = ( -/obj/structure/closet/firecloset/full, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/dark, -/area/station/maintenance/floor3/port) "twZ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -72598,13 +72454,11 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/pod/light, /area/station/maintenance/floor2/port/aft) -"txv" = ( -/obj/effect/turf_decal/trimline/yellow/filled/warning{ - dir = 4 - }, +"txh" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/maintenance/floor1/port/aft) +/obj/structure/closet/emcloset, +/turf/open/floor/pod/light, +/area/station/maintenance/floor2/port/aft) "txw" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/decoration/glowstick, @@ -72735,6 +72589,12 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/catwalk_floor, /area/station/hallway/floor4/aft) +"tzn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/plating, +/area/station/maintenance/floor4/starboard) "tzp" = ( /obj/structure/rack, /obj/item/soulstone/anybody/chaplain, @@ -72772,6 +72632,24 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/station/maintenance/floor2/starboard/aft) +"tzF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood/tile, +/area/station/commons/fitness/recreation) +"tzG" = ( +/obj/item/paint/anycolor{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/paint/anycolor, +/obj/item/paint/anycolor{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/structure/rack, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard/fore) "tzQ" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 9 @@ -72840,6 +72718,11 @@ }, /turf/open/floor/plating, /area/station/cargo/lobby) +"tAP" = ( +/obj/structure/closet/firecloset/full, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard/aft) "tAW" = ( /obj/structure/window/reinforced/spawner/directional/north, /obj/effect/decal/cleanable/ash, @@ -72865,15 +72748,18 @@ "tBk" = ( /turf/closed/wall/r_wall, /area/station/security/prison/visit) -"tBl" = ( -/obj/structure/toilet{ - pixel_y = 8 - }, +"tBn" = ( +/obj/effect/turf_decal/tile/red/anticorner, +/obj/structure/bed/maint, +/obj/item/reagent_containers/cup/glass/bottle/hooch, +/obj/structure/window/reinforced/tinted/frosted/spawner/directional/east, +/obj/structure/window/reinforced/tinted/frosted/spawner/directional/south, +/turf/open/floor/stone, +/area/station/maintenance/floor1/port) +"tBu" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/newscaster/directional/east, -/obj/machinery/light/small/directional/west, -/turf/open/floor/iron/showroomfloor, -/area/station/service/theater) +/turf/open/floor/pod/dark, +/area/station/maintenance/floor3/port) "tBv" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -72896,6 +72782,21 @@ /obj/machinery/light/directional/west, /turf/open/floor/iron/kitchen, /area/station/service/kitchen) +"tBG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/grille, +/turf/open/floor/plating, +/area/station/hallway/floor3/fore) +"tBQ" = ( +/obj/structure/rack, +/obj/item/trash/boritos/red{ + pixel_x = 4; + pixel_y = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor1/port/aft) "tCj" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 @@ -72903,6 +72804,24 @@ /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 @@ -72920,20 +72839,6 @@ /obj/structure/sign/poster/official/random/directional/north, /turf/open/floor/iron, /area/station/hallway/floor1/aft) -"tCS" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood/tile, -/area/station/commons/fitness/recreation) -"tCU" = ( -/obj/item/stack/tile/iron/white, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/random/directional/north, -/turf/open/floor/plating, -/area/station/medical/abandoned) "tDf" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -72989,18 +72894,6 @@ 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, @@ -73110,6 +73003,21 @@ }, /turf/open/floor/iron/dark, /area/station/hallway/floor4/aft) +"tFq" = ( +/obj/item/trash/ready_donk, +/obj/item/trash/candle, +/obj/item/trash/can/food/envirochow{ + pixel_x = -7 + }, +/obj/item/trash/boritos/red{ + pixel_x = 4; + pixel_y = 8 + }, +/obj/effect/decal/cleanable/garbage, +/obj/effect/decal/cleanable/food/pie_smudge, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor1/port/aft) "tFK" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/simple{ dir = 5 @@ -73122,11 +73030,6 @@ }, /turf/open/floor/iron/dark/telecomms, /area/station/tcommsat/server) -"tFM" = ( -/obj/effect/turf_decal/stripes, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/dark, -/area/station/maintenance/floor2/starboard) "tFO" = ( /obj/effect/turf_decal/tile/red/half/contrasted, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -73154,6 +73057,14 @@ /obj/machinery/firealarm/directional/south, /turf/open/floor/wood/tile, /area/station/service/library) +"tGl" = ( +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 4 + }, +/obj/machinery/space_heater, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard) "tGn" = ( /turf/closed/wall, /area/station/maintenance/floor3/port) @@ -73170,6 +73081,14 @@ dir = 4 }, /area/station/science/robotics/lab) +"tGz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/station/maintenance/floor2/port/aft) "tGA" = ( /obj/machinery/newscaster/directional/north, /obj/effect/decal/cleanable/dirt, @@ -73180,16 +73099,12 @@ "tGE" = ( /turf/open/floor/iron/textured, /area/station/command/heads_quarters/qm) -"tGW" = ( +"tGF" = ( +/obj/machinery/light/directional/north, /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/caution/stand_clear/white{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/white/line{ - dir = 8 - }, -/turf/open/floor/pod, -/area/station/maintenance/floor4/starboard/aft) +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/iron, +/area/station/security/range) "tHh" = ( /obj/effect/turf_decal/trimline/white/corner{ dir = 4 @@ -73210,6 +73125,11 @@ }, /turf/open/floor/plating, /area/station/maintenance/floor2/starboard/aft) +"tHq" = ( +/obj/structure/table/wood, +/obj/structure/sign/poster/contraband/pwr_game/directional/north, +/turf/open/floor/wood, +/area/station/maintenance/floor2/starboard) "tHs" = ( /obj/structure/sink/kitchen/directional/east, /obj/structure/disposalpipe/segment{ @@ -73222,11 +73142,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark/textured, /area/station/commons/fitness) -"tHH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/service/abandoned_gambling_den) "tHL" = ( /turf/open/floor/iron/textured_large, /area/station/cargo/storage) @@ -73396,11 +73311,6 @@ /obj/machinery/light/cold/no_nightlight/directional/west, /turf/open/floor/iron/white, /area/station/medical/medbay/central) -"tJE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/port) "tJG" = ( /obj/structure/cable, /turf/open/floor/wood/large, @@ -73425,14 +73335,6 @@ dir = 4 }, /area/station/command/gateway) -"tJY" = ( -/obj/effect/turf_decal/siding/wood/corner{ - dir = 8 - }, -/obj/machinery/light_switch/directional/east, -/obj/machinery/atm/directional/north, -/turf/open/floor/wood, -/area/station/commons/dorms/apartment2) "tJZ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -73560,16 +73462,6 @@ /obj/structure/sign/warning/pods/directional/south, /turf/open/floor/iron, /area/station/commons/vacant_room/commissary) -"tLt" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/table, -/obj/effect/spawner/random/maintenance, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/warehouse) "tLE" = ( /obj/machinery/light/blacklight/directional/east, /obj/machinery/vending/cola/pwr_game, @@ -73579,11 +73471,6 @@ /obj/structure/closet/emcloset/anchored, /turf/open/floor/pod/dark, /area/station/maintenance/floor3/port) -"tLQ" = ( -/obj/structure/window/reinforced/tinted/spawner/directional/east, -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/iron/dark/smooth_large, -/area/station/service/library/printer) "tLV" = ( /obj/effect/turf_decal/bot, /obj/machinery/light/small/directional/west, @@ -73624,6 +73511,16 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/commons/locker) +"tMu" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/wood/tile, +/area/station/service/library/printer) "tMK" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 1 @@ -73644,12 +73541,10 @@ /obj/effect/turf_decal/tile/red/half, /turf/open/floor/iron/dark/side, /area/station/security/brig) -"tNf" = ( -/obj/machinery/shieldgen, -/obj/effect/decal/cleanable/cobweb, +"tNw" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/textured_large, -/area/station/engineering/lobby) +/turf/open/floor/iron/dark/side, +/area/station/hallway/secondary/exit) "tNA" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -73670,6 +73565,15 @@ /obj/machinery/atmospherics/pipe/multiz/scrubbers/hidden/layer2, /turf/open/floor/catwalk_floor, /area/station/hallway/floor1/fore) +"tNN" = ( +/obj/machinery/button/door/directional/north{ + id = "survshop"; + name = "Workshop Shutters" + }, +/obj/effect/decal/cleanable/oil, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod, +/area/station/maintenance/floor4/starboard/aft) "tNS" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, @@ -73706,6 +73610,12 @@ dir = 1 }, /area/station/hallway/floor1/fore) +"tOp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/station/service/abandoned_gambling_den) "tOr" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible/layer4, /obj/effect/turf_decal/tile/blue{ @@ -73715,6 +73625,14 @@ dir = 1 }, /area/station/hallway/floor1/aft) +"tOt" = ( +/obj/effect/turf_decal/trimline/green/warning{ + dir = 5 + }, +/obj/machinery/firealarm/directional/east, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor2/starboard) "tOv" = ( /obj/effect/spawner/random/engineering/tracking_beacon, /turf/open/floor/iron/dark, @@ -73820,6 +73738,11 @@ /obj/structure/railing, /turf/open/floor/catwalk_floor, /area/station/maintenance/floor4/port/aft) +"tPX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/medical/abandoned) "tQd" = ( /turf/closed/wall, /area/station/service/bar/atrium) @@ -73827,11 +73750,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white/side, /area/station/cargo/miningdock) -"tQl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod, -/area/station/maintenance/floor4/starboard/aft) "tQq" = ( /obj/effect/turf_decal/trimline/blue/line, /obj/effect/turf_decal/trimline/blue/line{ @@ -73924,6 +73842,11 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/pod/light, /area/station/maintenance/floor1/starboard) +"tRl" = ( +/obj/effect/spawner/random/trash/bin, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard/fore) "tRo" = ( /obj/effect/turf_decal/siding/wood{ dir = 5 @@ -73991,16 +73914,6 @@ }, /turf/open/floor/engine, /area/station/science/cytology) -"tSf" = ( -/obj/effect/spawner/random/maintenance/two, -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/item/mop, -/obj/effect/spawner/random/engineering/flashlight, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard/fore) "tSs" = ( /obj/structure/window/reinforced/spawner/directional/west, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -74069,6 +73982,12 @@ dir = 4 }, /area/station/hallway/floor1/aft) +"tTr" = ( +/obj/structure/altar_of_gods, +/obj/effect/turf_decal/siding/white, +/obj/item/book/bible, +/turf/open/floor/mineral/silver, +/area/station/service/chapel) "tTw" = ( /obj/effect/turf_decal/trimline/purple/warning{ dir = 8 @@ -74079,6 +73998,14 @@ /obj/structure/closet/emcloset, /turf/open/floor/pod/dark, /area/station/maintenance/floor2/starboard) +"tTA" = ( +/obj/effect/turf_decal/trimline/green/arrow_ccw{ + dir = 1 + }, +/obj/machinery/airalarm/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/white/small, +/area/station/commons/fitness/recreation) "tTB" = ( /obj/structure/window/reinforced/spawner/directional/south, /obj/structure/statue/snow/snowman, @@ -74104,11 +74031,6 @@ /obj/structure/cable, /turf/open/floor/catwalk_floor, /area/station/hallway/floor2/fore) -"tTT" = ( -/obj/machinery/chem_dispenser, -/obj/structure/sign/poster/official/periodic_table/directional/west, -/turf/open/floor/iron/dark/textured, -/area/station/medical/pharmacy) "tTU" = ( /obj/structure/girder, /turf/open/floor/plating, @@ -74183,12 +74105,6 @@ /obj/effect/turf_decal/tile/red, /turf/open/floor/iron/dark, /area/station/security/office) -"tVc" = ( -/obj/structure/sign/poster/official/random/directional/north, -/obj/machinery/space_heater, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard) "tVp" = ( /obj/machinery/light_switch/directional/north, /obj/machinery/status_display/ai/directional/east, @@ -74236,11 +74152,6 @@ }, /turf/open/floor/pod/light, /area/station/maintenance/floor1/port/fore) -"tWo" = ( -/obj/structure/closet/emcloset/anchored, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard/fore) "tWv" = ( /obj/machinery/status_display/ai/directional/south, /obj/structure/disposalpipe/segment{ @@ -74258,6 +74169,10 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/catwalk_floor/iron, /area/station/engineering/atmos) +"tWK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall, +/area/station/maintenance/floor3/port/aft) "tWL" = ( /obj/machinery/light/dim/directional/north, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -74286,10 +74201,6 @@ }, /turf/open/floor/plating, /area/station/hallway/secondary/entry) -"tXg" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor2/starboard/fore) "tXF" = ( /obj/machinery/power/shuttle_engine/propulsion/burst{ dir = 4 @@ -74362,6 +74273,13 @@ }, /turf/open/floor/iron/dark, /area/station/science/ordnance/testlab) +"tZe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/white/line{ + dir = 9 + }, +/turf/open/floor/pod, +/area/station/maintenance/floor4/starboard/aft) "tZh" = ( /obj/machinery/door/airlock/science{ name = "Monkey Pen" @@ -74400,13 +74318,6 @@ /obj/machinery/holopad, /turf/open/floor/iron, /area/station/hallway/floor3/fore) -"tZJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/gibs/core, -/obj/effect/decal/cleanable/blood, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/pod/dark, -/area/station/maintenance/floor4/starboard) "tZR" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -74535,11 +74446,6 @@ /obj/item/kirbyplants/random, /turf/open/floor/iron/white/small, /area/station/commons/fitness/recreation) -"ubP" = ( -/obj/structure/rack, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/white, -/area/station/medical/abandoned) "ubR" = ( /turf/open/floor/carpet/royalblack, /area/station/service/kitchen/diner) @@ -74564,6 +74470,11 @@ dir = 1 }, /area/station/medical/chemistry) +"uck" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/smooth_corner, +/area/station/maintenance/floor2/starboard) "ucm" = ( /obj/effect/turf_decal/siding/wood{ dir = 5 @@ -74592,6 +74503,13 @@ /obj/effect/landmark/start/research_director, /turf/open/floor/iron/large, /area/station/command/heads_quarters/rd) +"ucz" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor2/port/aft) "ucA" = ( /turf/open/space/openspace, /area/space) @@ -74627,14 +74545,6 @@ dir = 8 }, /area/station/cargo/lobby) -"ucS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/graffiti, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/port/fore) "ucY" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -74665,11 +74575,6 @@ /obj/machinery/light/small/directional/west, /turf/open/floor/engine, /area/station/science/auxlab/firing_range) -"udy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/sheet/mineral/wood, -/turf/open/floor/plating, -/area/station/service/abandoned_gambling_den) "udC" = ( /obj/machinery/atmospherics/pipe/smart/simple/supply/visible/layer4, /turf/open/floor/iron, @@ -74681,6 +74586,13 @@ /obj/machinery/light/dim/directional/east, /turf/open/floor/catwalk_floor, /area/station/maintenance/floor1/port/fore) +"udG" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/got_wood/directional/west, +/turf/open/floor/wood, +/area/station/maintenance/floor1/port/aft) "udU" = ( /obj/machinery/door/firedoor/heavy, /obj/effect/turf_decal/delivery, @@ -74714,13 +74626,6 @@ /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/open/floor/iron, /area/station/maintenance/floor3/port/fore) -"ueC" = ( -/obj/effect/turf_decal/stripes{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/floor2/starboard/aft) "ueJ" = ( /obj/structure/chair/comfy/brown{ dir = 1 @@ -74730,16 +74635,6 @@ }, /turf/open/floor/carpet/royalblack, /area/station/service/theater) -"ueL" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 6 - }, -/obj/structure/window/reinforced/tinted/spawner/directional/east, -/turf/open/floor/wood, -/area/station/commons/vacant_room/office) "ueN" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -74783,10 +74678,6 @@ "ufl" = ( /turf/closed/wall, /area/station/commons/storage/art) -"ufs" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/medical/abandoned) "ufA" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark/textured, @@ -74864,6 +74755,22 @@ }, /turf/open/floor/engine/hull, /area/space/nearstation) +"ugm" = ( +/obj/structure/railing, +/obj/effect/turf_decal/trimline/green/warning{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor2/starboard) +"ugp" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/maintenance/floor2/starboard/aft) "ugs" = ( /turf/open/floor/iron/dark/side{ dir = 10 @@ -74902,16 +74809,6 @@ }, /turf/open/floor/catwalk_floor, /area/station/maintenance/floor1/port) -"uhk" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/trimline/blue, -/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/cyborg, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat) "uhn" = ( /obj/machinery/light/directional/east, /turf/open/openspace, @@ -74967,6 +74864,11 @@ }, /turf/open/floor/iron/checker, /area/station/commons/vacant_room/commissary) +"uhD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/toy/figure/syndie, +/turf/open/floor/pod/light, +/area/station/security/execution/education) "uhF" = ( /obj/machinery/light/small/directional/north, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, @@ -74984,11 +74886,6 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/station/maintenance/floor3/port/fore) -"uhU" = ( -/obj/structure/table/wood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/service/abandoned_gambling_den) "uid" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -75000,6 +74897,17 @@ /obj/effect/decal/cleanable/greenglow, /turf/open/floor/pod/light, /area/station/maintenance/floor4/port/fore) +"uij" = ( +/obj/machinery/status_display/evac/directional/west, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/docking/directional/south, +/obj/machinery/computer/shuttle/mining/common{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/hallway/secondary/exit) "uit" = ( /obj/machinery/door/airlock/hatch{ name = "Maintenance Access" @@ -75020,11 +74928,6 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/security/brig) -"uiA" = ( -/obj/structure/window/reinforced/tinted/frosted/spawner/directional/south, -/obj/structure/window/reinforced/tinted/frosted/spawner/directional/west, -/turf/open/openspace, -/area/station/maintenance/floor3/port) "uiH" = ( /obj/structure/window/reinforced/spawner/directional/south, /obj/structure/chair/sofa/bench/right{ @@ -75089,11 +74992,6 @@ }, /turf/open/floor/pod/light, /area/station/maintenance/floor3/port/aft) -"ujs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/graffiti, -/turf/open/floor/iron/white, -/area/station/medical/abandoned) "ujv" = ( /obj/docking_port/stationary/mining_home/common/northstar{ dir = 2 @@ -75144,14 +75042,12 @@ }, /turf/open/floor/iron/dark, /area/station/engineering/atmos/office) -"ukf" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible/layer2{ - dir = 10 - }, -/obj/machinery/airalarm/directional/north, +"ukk" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard/aft) "ukm" = ( /obj/machinery/seed_extractor, /obj/effect/turf_decal/trimline/purple/filled/corner{ @@ -75194,6 +75090,25 @@ dir = 1 }, /area/station/medical/abandoned) +"ulg" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted/spawner/directional/west, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/disposal/bin{ + name = "Book Returns" + }, +/turf/open/floor/iron, +/area/station/service/library) +"uli" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/floor4/starboard/aft) "ulj" = ( /obj/machinery/button/crematorium{ id = "crematorium_chapel"; @@ -75259,17 +75174,6 @@ /obj/structure/cable, /turf/open/floor/iron/white, /area/station/science/xenobiology/hallway) -"umg" = ( -/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/arrows{ - dir = 1 - }, -/obj/machinery/firealarm/directional/west, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/hallway/floor1/fore) "umo" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/weather/dirt{ @@ -75360,13 +75264,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/catwalk_floor, /area/station/maintenance/floor1/port) -"unC" = ( -/obj/effect/turf_decal/bot, -/obj/effect/spawner/random/structure/crate, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron/smooth, -/area/station/cargo/warehouse) "unQ" = ( /obj/machinery/atmospherics/components/unary/thermomachine/freezer{ dir = 4; @@ -75396,6 +75293,17 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/catwalk_floor, /area/station/maintenance/floor1/port/aft) +"uoB" = ( +/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/arrows{ + dir = 1 + }, +/obj/machinery/firealarm/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/hallway/floor1/fore) "uoE" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/tile/red/fourcorners, @@ -75417,6 +75325,12 @@ /obj/effect/spawner/random/engineering/tool, /turf/open/floor/pod/light, /area/station/maintenance/floor1/port/fore) +"uoQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/white/smooth_corner{ + dir = 4 + }, +/area/station/cargo/miningdock) "uoS" = ( /obj/effect/turf_decal/siding/wood{ dir = 9 @@ -75446,6 +75360,19 @@ /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/open/floor/plating, /area/station/hallway/floor3/fore) +"upi" = ( +/obj/effect/turf_decal/caution/stand_clear/white{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard/aft) "upo" = ( /obj/structure/table/wood, /obj/item/canvas/twentyfour_twentyfour, @@ -75463,10 +75390,14 @@ }, /turf/open/floor/wood/parquet, /area/station/service/lawoffice) -"upP" = ( +"upB" = ( +/obj/effect/turf_decal/trimline/purple/warning{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/floor1/port) +/turf/open/floor/pod/light, +/area/station/maintenance/floor2/starboard) "upS" = ( /obj/item/chair/plastic, /obj/structure/sign/poster/contraband/random/directional/north, @@ -75542,14 +75473,27 @@ dir = 1 }, /area/station/security/office) -"urD" = ( -/obj/effect/turf_decal/tile/bar/opposingcorners{ - dir = 1 +"urG" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 }, -/obj/machinery/light/directional/south, +/obj/structure/cable, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/checker, -/area/station/cargo/miningdock) +/turf/open/floor/plating, +/area/station/medical/abandoned) +"urH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plating, +/area/station/maintenance/floor4/starboard/aft) +"urM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/grille, +/turf/open/floor/plating, +/area/station/maintenance/floor4/port) "urO" = ( /obj/machinery/firealarm/directional/east, /obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible/layer2{ @@ -75718,6 +75662,12 @@ /obj/structure/closet/firecloset, /turf/open/floor/pod/light, /area/station/maintenance/floor1/port) +"utG" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/sign/poster/contraband/have_a_puff/directional/north, +/obj/machinery/vending/snack/blue, +/turf/open/floor/iron/white, +/area/station/medical/break_room) "utJ" = ( /obj/effect/mapping_helpers/airlock/access/any/security/court, /obj/machinery/door/firedoor, @@ -75784,16 +75734,6 @@ dir = 1 }, /area/station/security/prison) -"uuz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/maintenance, -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 6 - }, -/turf/open/floor/pod/light, -/area/station/maintenance/floor2/port/aft) "uuG" = ( /obj/effect/turf_decal/tile/green/half{ dir = 8 @@ -75850,6 +75790,12 @@ }, /turf/open/floor/iron/dark, /area/station/hallway/floor3/fore) +"uvX" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/table/wood, +/obj/structure/window/reinforced/tinted/spawner/directional/west, +/turf/open/floor/carpet, +/area/station/commons/vacant_room/office) "uwa" = ( /obj/machinery/oven/range, /turf/open/floor/iron/kitchen, @@ -75871,12 +75817,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/pod/dark, /area/station/maintenance/floor4/starboard) -"uwl" = ( -/obj/machinery/computer/slot_machine, -/obj/machinery/firealarm/directional/west, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet/green, -/area/station/service/abandoned_gambling_den) "uws" = ( /obj/machinery/door/firedoor/heavy, /obj/machinery/atmospherics/pipe/smart/simple/yellow/visible/layer2{ @@ -75897,17 +75837,6 @@ /obj/effect/turf_decal/tile/red, /turf/open/floor/iron/dark/corner, /area/station/security/brig) -"uwG" = ( -/obj/item/stack/sheet/iron/five, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/white, -/area/station/medical/abandoned) -"uwP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/power/port_gen/pacman, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/port/fore) "uwQ" = ( /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ dir = 5 @@ -75917,6 +75846,17 @@ "uwU" = ( /turf/open/floor/iron/white, /area/station/medical/medbay/lobby) +"uxb" = ( +/obj/structure/window/reinforced/tinted/frosted/spawner/directional/east, +/turf/open/openspace, +/area/station/maintenance/floor2/port) +"uxe" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/floor2/starboard) "uxf" = ( /obj/effect/spawner/structure/window/hollow/reinforced/directional, /obj/structure/cable, @@ -75938,18 +75878,6 @@ /obj/machinery/duct, /turf/open/floor/iron/dark, /area/station/security/brig) -"uxt" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/electrical{ - pixel_y = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/solars/port/aft) -"uxw" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard/fore) "uxF" = ( /obj/machinery/status_display/ai/directional/west, /obj/structure/flora/bush/sparsegrass/style_random, @@ -75965,11 +75893,12 @@ "uxT" = ( /turf/closed/wall, /area/station/tcommsat/computer) -"uxW" = ( +"uxU" = ( +/obj/machinery/atmospherics/components/trinary/mixer, +/obj/effect/turf_decal/box, /obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/mess, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/port/fore) +/turf/open/floor/plating, +/area/station/maintenance/floor2/port) "uxX" = ( /obj/structure/closet/secure_closet/engineering_welding, /obj/structure/window/spawner/directional/west, @@ -76075,21 +76004,13 @@ }, /turf/open/floor/pod/dark, /area/station/hallway/secondary/entry) -"uzw" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth_corner{ - dir = 4 - }, -/area/station/maintenance/floor2/starboard) -"uzB" = ( -/obj/structure/table/reinforced, -/obj/item/screwdriver, +"uzD" = ( +/obj/machinery/light/dim/directional/south, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/catwalk_floor/iron_dark, -/area/station/maintenance/floor2/starboard/aft) +/obj/structure/rack, +/obj/effect/spawner/random/maintenance/three, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/port/fore) "uzE" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 @@ -76139,17 +76060,6 @@ /obj/effect/spawner/structure/window/reinforced/plasma, /turf/open/floor/plating, /area/station/engineering/atmos) -"uAi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/green/half{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/poster/random/directional/north, -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/station/hallway/secondary/exit/escape_pod) "uAI" = ( /obj/machinery/light/cold/directional/south, /obj/effect/turf_decal/trimline/blue/filled/corner, @@ -76158,20 +76068,21 @@ }, /turf/open/floor/iron/white, /area/station/medical/medbay/central) +"uAL" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/maintenance/floor3/starboard/aft) "uAT" = ( /obj/effect/turf_decal/trimline/blue/filled/line, /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/medical/treatment_center) -"uAU" = ( -/obj/machinery/light/directional/west, -/obj/structure/table/reinforced, -/obj/item/flashlight/lamp, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/floor2/port/aft) "uAY" = ( /obj/machinery/computer/security/telescreen/entertainment/directional/west, /turf/open/floor/carpet, @@ -76203,6 +76114,12 @@ /obj/effect/turf_decal/tile/neutral/full, /turf/open/floor/iron, /area/station/science/ordnance/testlab) +"uBM" = ( +/obj/machinery/computer/pandemic, +/obj/structure/sign/poster/official/periodic_table/directional/north, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/iron/dark, +/area/station/medical/virology) "uBN" = ( /obj/structure/window/reinforced/spawner/directional/west, /obj/effect/turf_decal/trimline/white/filled/line{ @@ -76297,6 +76214,18 @@ }, /turf/open/floor/carpet/royalblack, /area/station/service/kitchen/diner) +"uCX" = ( +/obj/item/canvas/twentyfour_twentyfour, +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard/fore) +"uDa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/landmark/start/cargo_technician, +/turf/open/floor/iron, +/area/station/cargo/warehouse) "uDb" = ( /obj/effect/turf_decal/trimline/green/filled/line, /obj/effect/turf_decal/trimline/green/line{ @@ -76311,6 +76240,10 @@ }, /turf/open/floor/iron, /area/station/hallway/floor2/aft) +"uDh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/cargo/miningdock) "uDr" = ( /obj/machinery/light/small/directional/north, /obj/effect/decal/cleanable/dirt, @@ -76409,6 +76342,13 @@ /obj/machinery/airalarm/directional/north, /turf/open/floor/iron/dark, /area/station/ai_monitored/turret_protected/ai) +"uEB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/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/maintenance/floor2/starboard/aft) "uEF" = ( /turf/closed/wall, /area/station/security/prison/work) @@ -76418,14 +76358,6 @@ }, /turf/open/floor/carpet/royalblack, /area/station/service/theater) -"uEK" = ( -/obj/effect/decal/cleanable/blood/tracks, -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/maintenance/floor2/starboard/aft) "uEL" = ( /obj/effect/turf_decal/trimline/yellow/warning{ dir = 9 @@ -76459,6 +76391,13 @@ dir = 8 }, /area/station/hallway/floor1/fore) +"uFn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard/fore) "uFw" = ( /obj/structure/cable, /obj/machinery/holopad, @@ -76509,6 +76448,19 @@ /obj/item/flashlight/lamp/green, /turf/open/floor/wood/tile, /area/station/service/library) +"uGK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light_switch/directional/west, +/obj/structure/chair/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/wood/large, +/area/station/maintenance/floor4/starboard/aft) "uGL" = ( /obj/item/rack_parts, /turf/open/floor/pod/light, @@ -76540,10 +76492,23 @@ /obj/machinery/vending/coffee, /turf/open/floor/iron/dark, /area/station/science/breakroom) +"uGW" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/cargo/storage) "uHa" = ( /obj/effect/turf_decal/tile/red, /turf/open/floor/iron/dark/side, /area/station/hallway/floor4/aft) +"uHd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/textured_large, +/area/station/hallway/secondary/exit/departure_lounge) "uHe" = ( /obj/machinery/atmospherics/components/unary/passive_vent{ dir = 1 @@ -76559,6 +76524,11 @@ }, /turf/open/floor/catwalk_floor, /area/station/hallway/floor3/fore) +"uHn" = ( +/obj/machinery/chem_dispenser, +/obj/structure/sign/poster/official/periodic_table/directional/west, +/turf/open/floor/iron/dark/textured, +/area/station/medical/pharmacy) "uHu" = ( /obj/effect/turf_decal/trimline/white/filled/line{ dir = 8 @@ -76567,11 +76537,20 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/medical/psychology) -"uHv" = ( -/obj/effect/decal/cleanable/dirt, -/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, @@ -76659,10 +76638,6 @@ }, /turf/open/floor/iron/dark, /area/station/hallway/floor1/aft) -"uIr" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard) "uIx" = ( /turf/closed/wall/r_wall, /area/station/maintenance/floor4/port/fore) @@ -76687,17 +76662,13 @@ /obj/structure/cable, /turf/open/floor/catwalk_floor, /area/station/maintenance/floor1/port/fore) -"uIM" = ( -/obj/machinery/light/dim/directional/west, -/obj/effect/turf_decal/trimline/red/line{ - dir = 8 - }, +"uIH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, /obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/plumbed{ - dir = 4 - }, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard/aft) +/turf/open/floor/plating, +/area/station/maintenance/floor2/port/aft) "uIN" = ( /turf/closed/wall/r_wall, /area/station/security/checkpoint/third) @@ -76735,6 +76706,11 @@ }, /turf/open/floor/wood/tile, /area/station/command/heads_quarters/captain/private) +"uJF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/dark, +/area/station/maintenance/floor2/starboard) "uJG" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -76749,6 +76725,14 @@ }, /turf/open/floor/iron, /area/station/engineering/atmos) +"uJP" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/obj/effect/turf_decal/siding/wood, +/obj/structure/window/reinforced/tinted/spawner/directional/north, +/obj/structure/window/reinforced/tinted/spawner/directional/west, +/turf/open/floor/carpet, +/area/station/commons/vacant_room/office) "uJR" = ( /obj/effect/turf_decal/trimline/brown/warning{ dir = 4 @@ -76796,14 +76780,26 @@ /obj/structure/cable/multilayer/multiz, /turf/open/floor/catwalk_floor, /area/station/hallway/floor1/fore) -"uKz" = ( -/obj/effect/turf_decal/trimline/purple/warning{ - dir = 8 +"uKx" = ( +/obj/structure/table/reinforced/plastitaniumglass, +/obj/item/folder/white, +/obj/item/taperecorder{ + pixel_x = -9; + pixel_y = 3 }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor2/starboard) +/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) "uKC" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /obj/machinery/firealarm/directional/north, @@ -76811,17 +76807,6 @@ dir = 1 }, /area/station/hallway/floor1/fore) -"uKD" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor3/port/aft) "uKE" = ( /obj/effect/turf_decal/trimline/brown/warning{ dir = 4 @@ -76855,6 +76840,10 @@ /obj/effect/spawner/random/engineering/atmospherics_portable, /turf/open/floor/pod/dark, /area/station/maintenance/floor3/port) +"uLw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/floor1/port) "uLA" = ( /obj/machinery/light/directional/south, /obj/effect/turf_decal/trimline/green/filled/line{ @@ -77056,13 +77045,6 @@ dir = 8 }, /area/station/security/courtroom) -"uOe" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/dresser, -/turf/open/floor/wood/large, -/area/station/maintenance/floor4/starboard/aft) "uOl" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 4 @@ -77083,14 +77065,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/pod, /area/station/maintenance/floor4/starboard/aft) -"uOq" = ( -/obj/effect/turf_decal/stripes{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/floor2/starboard) "uOx" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -77175,6 +77149,10 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/catwalk_floor, /area/station/maintenance/floor1/port) +"uPk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/red, +/area/station/maintenance/floor3/port/aft) "uPm" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/moisture_trap{ @@ -77182,11 +77160,6 @@ }, /turf/open/floor/pod/light, /area/station/maintenance/floor1/port) -"uPA" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/solars/starboard/aft) "uPM" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/disposalpipe/segment, @@ -77223,12 +77196,6 @@ }, /turf/open/floor/iron/dark, /area/station/hallway/floor4/fore) -"uPY" = ( -/obj/machinery/light/dim/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/crate, -/turf/open/floor/pod/dark, -/area/station/maintenance/floor3/port) "uQe" = ( /obj/structure/chair/sofa/bench/left{ dir = 4 @@ -77344,6 +77311,13 @@ /obj/effect/turf_decal/tile/blue/fourcorners, /turf/open/floor/iron/white/small, /area/station/medical/chemistry) +"uRv" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/station/service/abandoned_gambling_den) "uRE" = ( /obj/machinery/door/airlock/engineering{ name = "Auxiliary Base Supplies" @@ -77440,14 +77414,10 @@ /obj/item/radio/intercom/directional/south, /turf/open/floor/iron/dark, /area/station/hallway/floor4/aft) -"uTk" = ( -/obj/effect/turf_decal/trimline/red/line{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/portable_atmospherics/scrubber, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard/aft) +"uTr" = ( +/obj/structure/broken_flooring/singular/directional/south, +/turf/open/floor/plating, +/area/station/maintenance/floor1/port) "uTx" = ( /obj/effect/turf_decal/trimline/brown/warning{ dir = 8 @@ -77528,13 +77498,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/engineering/atmos/pumproom) -"uUi" = ( -/obj/effect/decal/cleanable/dirt, -/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 @@ -77687,6 +77650,11 @@ /obj/structure/cable/multilayer/multiz, /turf/open/floor/catwalk_floor, /area/station/hallway/floor2/aft) +"uVU" = ( +/obj/machinery/light/dim/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/port/aft) "uVV" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, @@ -77709,13 +77677,6 @@ /obj/effect/turf_decal/trimline/purple/filled/line, /turf/open/floor/iron/white, /area/station/science/server) -"uWi" = ( -/obj/machinery/chem_master{ - name = "Hydroanalysis Device" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor1/port/aft) "uWl" = ( /obj/effect/turf_decal/tile/blue/half{ dir = 1 @@ -77725,20 +77686,6 @@ dir = 1 }, /area/station/command/teleporter) -"uWm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/closet_maintenance, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 9 - }, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 8 - }, -/obj/effect/mapping_helpers/mail_sorting/engineering/general, -/obj/effect/mapping_helpers/mail_sorting/engineering/ce_office, -/obj/effect/mapping_helpers/mail_sorting/engineering/atmospherics, -/turf/open/floor/pod/light, -/area/station/maintenance/floor2/port/aft) "uWn" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/transit_tube/curved{ @@ -77849,14 +77796,16 @@ }, /turf/open/floor/wood, /area/station/commons/dorms/apartment1) -"uXL" = ( -/obj/machinery/atmospherics/components/binary/pump/layer2{ - dir = 1 +"uXI" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 }, -/obj/structure/cable, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmos) +/obj/effect/decal/cleanable/blood/tracks{ + dir = 5 + }, +/turf/open/floor/engine, +/area/station/maintenance/floor4/starboard/aft) "uXM" = ( /obj/effect/turf_decal/trimline/brown/warning{ dir = 9 @@ -77945,6 +77894,18 @@ dir = 8 }, /area/station/security/office) +"uYX" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/cigarettes/cigpack_midori{ + pixel_x = -6; + pixel_y = -4 + }, +/obj/item/lighter{ + pixel_y = -6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/purple, +/area/station/maintenance/floor1/port/aft) "uZc" = ( /turf/closed/wall, /area/station/medical/abandoned) @@ -78015,6 +77976,12 @@ "uZF" = ( /turf/closed/wall/r_wall, /area/station/maintenance/floor2/starboard/aft) +"uZQ" = ( +/obj/effect/turf_decal/trimline/green/warning, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/dim/directional/north, +/turf/open/floor/pod/light, +/area/station/maintenance/floor3/port/fore) "uZV" = ( /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /obj/machinery/door/airlock/hatch{ @@ -78134,6 +78101,11 @@ /obj/machinery/light/directional/north, /turf/open/floor/plating, /area/station/service/chapel/funeral) +"vaO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/structure/electrified_grille, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/port) "vaQ" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 9 @@ -78158,16 +78130,6 @@ /obj/structure/girder/reinforced, /turf/open/floor/plating, /area/station/engineering/atmos) -"vba" = ( -/obj/effect/turf_decal/trimline/blue/corner{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server/upper) "vbg" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -78178,13 +78140,6 @@ }, /turf/open/floor/catwalk_floor, /area/station/maintenance/floor1/port/aft) -"vbs" = ( -/obj/effect/turf_decal/stripes{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/floor2/starboard/fore) "vbx" = ( /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/siding/thinplating_new{ @@ -78206,17 +78161,11 @@ /obj/structure/flora/bush/flowers_yw/style_random, /turf/open/floor/grass, /area/station/science/genetics) -"vbT" = ( +"vbW" = ( +/obj/effect/decal/cleanable/oil, /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner, -/obj/structure/table/reinforced, -/obj/item/storage/box/lights/mixed{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/toolbox/electrical, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/port/fore) +/turf/open/floor/pod, +/area/station/maintenance/floor4/starboard/aft) "vcd" = ( /obj/effect/turf_decal/tile/blue/opposingcorners, /obj/machinery/airalarm/directional/west, @@ -78229,6 +78178,14 @@ /obj/effect/turf_decal/trimline/green/filled/line, /turf/open/floor/iron, /area/station/commons/vacant_room/commissary) +"vch" = ( +/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/decal/cleanable/dirt, +/turf/open/floor/iron/white, +/area/station/medical/abandoned) "vcr" = ( /turf/closed/wall, /area/station/maintenance/floor1/port/aft) @@ -78242,16 +78199,6 @@ /obj/structure/sink/kitchen/directional/west, /turf/open/floor/catwalk_floor/iron_white, /area/station/cargo/miningdock) -"vdc" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 4 - }, -/obj/effect/landmark/start/hangover, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/station/commons/storage/primary) "vdd" = ( /obj/effect/turf_decal/trimline/red, /obj/machinery/atmospherics/miner/nitrogen, @@ -78260,12 +78207,6 @@ "vdf" = ( /turf/open/floor/catwalk_floor, /area/station/hallway/floor1/aft) -"vdn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/solars/port/aft) "vds" = ( /obj/structure/table, /obj/item/paper_bin, @@ -78308,20 +78249,6 @@ }, /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 @@ -78362,6 +78289,12 @@ dir = 4 }, /area/station/service/chapel) +"vfc" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) "vff" = ( /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /obj/machinery/door/airlock/hatch{ @@ -78373,17 +78306,19 @@ /obj/effect/mapping_helpers/airlock/unres, /turf/open/floor/plating, /area/station/maintenance/floor2/port) -"vfi" = ( +"vfj" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/glass, -/turf/open/floor/plating, -/area/station/maintenance/floor4/starboard) -"vfG" = ( +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/pod, +/area/station/maintenance/floor4/port/fore) +"vfH" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, /obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/catwalk_floor/iron_smooth, -/area/station/cargo/warehouse) +/turf/open/floor/pod/light, +/area/station/maintenance/floor2/starboard) "vfI" = ( /obj/structure/chair/stool/bar/directional/north, /obj/effect/turf_decal/tile/purple/fourcorners, @@ -78478,26 +78413,25 @@ /obj/machinery/air_sensor/nitrous_tank, /turf/open/floor/engine/n2o, /area/station/engineering/atmos) +"vgY" = ( +/obj/structure/rack, +/obj/item/reagent_containers/spray/cleaner{ + pixel_y = -5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor3/port/aft) "vhd" = ( /obj/machinery/smartfridge, /obj/machinery/door/firedoor, /obj/machinery/duct, /turf/open/floor/plating, /area/station/service/kitchen) -"vhj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/textured_large, -/area/station/hallway/secondary/exit/departure_lounge) -"vhq" = ( -/obj/effect/turf_decal/stripes{ - dir = 1 - }, +"vhp" = ( +/obj/structure/ladder, /obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/iron, -/area/station/maintenance/floor2/starboard/aft) +/turf/open/floor/pod/light, +/area/station/maintenance/floor3/starboard/aft) "vhr" = ( /obj/structure/bed, /obj/item/bedsheet/ian, @@ -78522,19 +78456,6 @@ /obj/effect/spawner/random/trash/mess, /turf/open/floor/catwalk_floor, /area/station/maintenance/floor1/port) -"vhP" = ( -/obj/effect/turf_decal/tile/blue/half{ - dir = 8 - }, -/obj/structure/tank_holder/emergency_oxygen, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/white/smooth_edge{ - dir = 8 - }, -/area/station/medical/abandoned) "vhS" = ( /obj/machinery/light/dim/directional/south, /turf/open/openspace, @@ -78569,6 +78490,13 @@ /obj/machinery/vending/coffee, /turf/open/floor/iron, /area/station/commons/fitness) +"viv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/hallway/secondary/exit) "vix" = ( /obj/effect/mapping_helpers/airlock/access/all/medical/cmo, /obj/effect/turf_decal/tile/blue/fourcorners, @@ -78588,15 +78516,6 @@ }, /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 @@ -78657,14 +78576,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/kitchen, /area/station/service/kitchen/abandoned) -"vju" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/generic_maintenance_landmark, -/turf/open/floor/wood/large, -/area/station/maintenance/floor4/starboard/aft) "vjv" = ( /turf/open/floor/iron/dark, /area/station/hallway/secondary/exit) @@ -78710,6 +78621,17 @@ dir = 8 }, /area/station/hallway/floor3/aft) +"vke" = ( +/obj/effect/turf_decal/trimline/purple/warning{ + dir = 8 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/structure/closet/firecloset, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/dark, +/area/station/maintenance/floor2/starboard) "vko" = ( /obj/structure/window/reinforced/spawner/directional/south, /obj/structure/window/reinforced/spawner/directional/west, @@ -78722,13 +78644,6 @@ dir = 5 }, /area/station/security/office) -"vkz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/tracks{ - dir = 6 - }, -/turf/open/floor/wood, -/area/station/service/abandoned_gambling_den) "vkO" = ( /obj/structure/closet/firecloset, /obj/effect/decal/cleanable/dirt, @@ -78795,6 +78710,17 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron/cafeteria, /area/station/service/theater) +"vlr" = ( +/obj/structure/table/wood, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/gun/ballistic/revolver/russian, +/turf/open/floor/wood/large, +/area/station/maintenance/floor4/starboard/aft) +"vlt" = ( +/obj/structure/sign/poster/contraband/atmosia_independence/directional/west, +/turf/open/floor/pod/light, +/area/station/maintenance/floor1/port/fore) "vlD" = ( /obj/machinery/light/directional/east, /obj/effect/landmark/start/hangover, @@ -78835,10 +78761,6 @@ }, /turf/open/floor/pod/light, /area/station/maintenance/floor2/starboard/fore) -"vlX" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet/red, -/area/station/maintenance/floor3/port/aft) "vlY" = ( /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /obj/effect/mapping_helpers/airlock/abandoned, @@ -78853,6 +78775,11 @@ dir = 1 }, /area/station/hallway/floor3/fore) +"vmh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/white/smooth_corner, +/area/station/cargo/miningdock) "vmj" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 4 @@ -79001,6 +78928,13 @@ /obj/machinery/camera/autoname/directional/east, /turf/open/floor/iron/cafeteria, /area/station/service/theater) +"voc" = ( +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/maintenance/floor2/starboard/aft) "vog" = ( /obj/structure/bed/maint{ pixel_y = 14 @@ -79027,26 +78961,6 @@ /obj/structure/sign/departments/evac/directional/west, /turf/open/floor/iron/dark, /area/station/hallway/floor1/fore) -"vok" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/garbage{ - spawn_scatter_radius = 1 - }, -/obj/effect/spawner/random/trash/garbage{ - spawn_scatter_radius = 1 - }, -/obj/effect/spawner/random/trash/garbage{ - spawn_scatter_radius = 1 - }, -/obj/effect/spawner/random/trash/garbage{ - spawn_scatter_radius = 1 - }, -/obj/effect/spawner/random/trash/garbage{ - spawn_scatter_radius = 1 - }, -/obj/item/pen/survival, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/port) "vol" = ( /obj/structure/rack, /obj/machinery/light/directional/west, @@ -79059,6 +78973,11 @@ /obj/item/pen, /turf/open/floor/iron/dark, /area/station/command/teleporter) +"voq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/dim/directional/north, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard/fore) "vox" = ( /obj/machinery/camera/autoname/directional/west, /turf/open/floor/carpet/orange, @@ -79084,6 +79003,13 @@ /obj/structure/closet/firecloset, /turf/open/floor/pod/light, /area/station/maintenance/floor2/port) +"voP" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/floor2/starboard/fore) "voT" = ( /turf/closed/wall, /area/station/maintenance/floor4/port/fore) @@ -79118,11 +79044,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/carpet/red, /area/station/service/theater) -"vpn" = ( -/obj/machinery/biogenerator, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/floor4/starboard) "vpp" = ( /obj/structure/stairs/north, /turf/open/floor/iron, @@ -79246,26 +79167,6 @@ /obj/machinery/atmospherics/pipe/layer_manifold/supply/visible, /turf/open/floor/plating, /area/station/maintenance/floor2/starboard/aft) -"vqS" = ( -/obj/effect/decal/cleanable/oil/streak, -/obj/effect/decal/cleanable/dirt, -/obj/structure/marker_beacon/burgundy, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard/aft) -"vqT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/growing/tray, -/turf/open/floor/plating, -/area/station/maintenance/floor4/starboard) -"vrh" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/station/commons/storage/primary) "vrk" = ( /obj/structure/table, /obj/machinery/newscaster/directional/east, @@ -79327,16 +79228,6 @@ /obj/effect/spawner/random/structure/closet_empty, /turf/open/floor/pod/light, /area/station/maintenance/floor3/starboard) -"vrX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/turf/open/floor/pod/light, -/area/station/maintenance/floor3/starboard/fore) "vsj" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -79382,6 +79273,13 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/white, /area/station/science/xenobiology/hallway) +"vsE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/contraband/landmine, +/turf/open/floor/engine{ + icon_state = "podfloor_light" + }, +/area/station/maintenance/floor4/port) "vsK" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron/showroomfloor, @@ -79436,19 +79334,6 @@ /obj/item/radio/intercom/directional/east, /turf/open/floor/carpet/red, /area/station/service/theater) -"vtj" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/item/folder/yellow, -/obj/item/wrench, -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/cargo/warehouse) "vtt" = ( /obj/machinery/door/airlock/atmos{ name = "Atmospherics" @@ -79477,6 +79362,14 @@ dir = 10 }, /area/station/command/bridge) +"vtL" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/iron, +/area/station/maintenance/floor2/starboard/aft) "vtO" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -79598,6 +79491,11 @@ }, /turf/open/floor/catwalk_floor, /area/station/maintenance/floor3/port/fore) +"vuU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/pod/light, +/area/station/maintenance/floor2/port/aft) "vuV" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=2-13"; @@ -79653,10 +79551,6 @@ dir = 4 }, /area/station/engineering/lobby) -"vvT" = ( -/obj/machinery/atm/directional/north, -/turf/open/floor/iron/dark, -/area/station/hallway/floor1/fore) "vvX" = ( /obj/machinery/door_buttons/access_button{ idDoor = "virology_airlock_exterior"; @@ -79694,6 +79588,23 @@ }, /turf/open/floor/iron/kitchen, /area/station/service/kitchen) +"vwg" = ( +/obj/machinery/door/airlock/medical{ + name = "The Blue Door" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/blue, +/area/station/maintenance/floor3/port/aft) +"vwm" = ( +/obj/machinery/light/dim/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/port/fore) "vwv" = ( /obj/structure/disposalpipe/trunk{ dir = 1 @@ -79701,20 +79612,6 @@ /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 @@ -79762,6 +79659,15 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/station/security/eva) +"vxw" = ( +/obj/structure/sign/poster/contraband/random/directional/west, +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 8 + }, +/obj/item/plant_analyzer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard) "vxx" = ( /turf/open/floor/iron/dark/textured_edge{ dir = 1 @@ -79971,14 +79877,6 @@ /obj/machinery/camera/autoname/directional/north, /turf/open/floor/iron/white/textured_large, /area/station/service/chapel) -"vzx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/pod/light, -/area/station/maintenance/floor3/port/aft) "vzO" = ( /obj/machinery/status_display/ai/directional/north, /turf/open/floor/iron/dark/side{ @@ -80001,6 +79899,11 @@ /obj/structure/table/wood/poker, /turf/open/floor/carpet/green, /area/station/service/bar/atrium) +"vzU" = ( +/obj/structure/ladder, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard/fore) "vzY" = ( /obj/effect/turf_decal/siding/wood, /obj/structure/bookcase/random/fiction, @@ -80052,12 +79955,14 @@ dir = 8 }, /area/station/hallway/floor1/fore) -"vAB" = ( +"vAK" = ( +/obj/effect/turf_decal/trimline/blue/line{ + dir = 4 + }, /obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/maintenance/two, -/obj/effect/decal/cleanable/wrapping, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard/fore) +/obj/machinery/airalarm/directional/west, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server/upper) "vAU" = ( /obj/effect/turf_decal/tile/yellow/half/contrasted{ dir = 4 @@ -80090,16 +79995,6 @@ dir = 1 }, /area/station/security/brig) -"vBd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/crayon{ - icon_state = "body" - }, -/obj/effect/decal/cleanable/chem_pile, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/service/abandoned_gambling_den) "vBk" = ( /obj/effect/turf_decal/tile/blue/fourcorners, /obj/machinery/suit_storage_unit/medical, @@ -80110,6 +80005,14 @@ /obj/machinery/defibrillator_mount/directional/south, /turf/open/floor/iron/dark, /area/station/medical/surgery/fore) +"vBp" = ( +/obj/structure/rack, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/food_or_drink/condiment, +/obj/item/flashlight, +/obj/machinery/light/dim/directional/west, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard) "vBA" = ( /obj/machinery/door/airlock/medical{ name = "Safe Habitation B" @@ -80208,6 +80111,13 @@ "vDo" = ( /turf/open/floor/plating/foam, /area/station/maintenance/floor3/starboard/fore) +"vDq" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/holopad, +/obj/effect/landmark/navigate_destination/dockarrival, +/obj/machinery/atm/directional/south, +/turf/open/floor/iron/textured_large, +/area/station/hallway/secondary/entry) "vDz" = ( /obj/machinery/vending/wardrobe/sec_wardrobe, /obj/effect/turf_decal/tile/red/fourcorners, @@ -80321,6 +80231,16 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/service/bar) +"vFx" = ( +/obj/structure/frame/computer{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/structure/window/reinforced/tinted/spawner/directional/east, +/turf/open/floor/wood, +/area/station/commons/vacant_room/office) "vFB" = ( /turf/open/floor/engine, /area/station/science/cytology) @@ -80334,12 +80254,6 @@ /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating, /area/station/maintenance/floor1/port/aft) -"vFS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/maintenance, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/port) "vFV" = ( /obj/effect/turf_decal/trimline/blue/end, /obj/effect/mapping_helpers/airlock/access/any/command/general, @@ -80487,17 +80401,6 @@ /obj/effect/spawner/random/engineering/tank, /turf/open/floor/pod/dark, /area/station/maintenance/floor2/port) -"vHz" = ( -/obj/machinery/field/generator, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/red/line{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/textured_large, -/area/station/engineering/lobby) "vHC" = ( /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden{ dir = 8 @@ -80509,13 +80412,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/pod/light, /area/station/maintenance/floor1/starboard/fore) -"vHN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/broken/directional/east, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/station/hallway/secondary/exit) "vHQ" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -80526,12 +80422,6 @@ /obj/effect/turf_decal/tile/yellow/half/contrasted, /turf/open/floor/iron, /area/station/engineering/atmos/pumproom) -"vHX" = ( -/obj/effect/spawner/random/decoration/glowstick, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard/aft) "vHZ" = ( /obj/structure/cable, /obj/effect/spawner/random/structure/grille, @@ -80618,6 +80508,14 @@ /obj/effect/spawner/random/trash/graffiti, /turf/open/floor/iron/white, /area/station/medical/abandoned) +"vJb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/textured_large, +/area/station/hallway/secondary/exit/departure_lounge) "vJf" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/portable_atmospherics/canister/air, @@ -80684,10 +80582,6 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron/dark, /area/station/engineering/atmos/hfr_room) -"vKs" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/solars/port/aft) "vKt" = ( /obj/machinery/chem_master, /turf/open/floor/pod/light, @@ -80702,12 +80596,6 @@ /obj/machinery/light/dim/directional/north, /turf/open/floor/engine/cult, /area/station/service/chapel) -"vKH" = ( -/obj/effect/turf_decal/trimline/blue/line, -/obj/effect/decal/cleanable/oil, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server/upper) "vKY" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -80790,6 +80678,20 @@ }, /turf/open/floor/iron, /area/station/hallway/floor1/fore) +"vLT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/sign/poster/official/safety_internals/directional/south, +/turf/open/floor/pod/light, +/area/station/maintenance/floor1/port/fore) +"vLV" = ( +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor1/port/fore) "vLW" = ( /turf/closed/wall/r_wall, /area/station/command/heads_quarters/captain) @@ -80812,15 +80714,20 @@ /obj/item/radio/intercom/directional/east, /turf/open/floor/plating, /area/station/cargo/sorting) -"vMm" = ( +"vMr" = ( +/obj/structure/rack, /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/green/half{ - dir = 1 - }, -/turf/open/floor/iron/dark/side{ - dir = 1 +/obj/effect/spawner/random/mod/maint, +/turf/open/floor/wood, +/area/station/maintenance/floor3/starboard/aft) +"vMw" = ( +/obj/effect/decal/cleanable/blood/tracks, +/obj/structure/chair{ + dir = 4 }, -/area/station/hallway/secondary/exit/escape_pod) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/maintenance/floor2/starboard/aft) "vMB" = ( /obj/structure/table/reinforced, /obj/item/seeds/cannabis, @@ -80841,12 +80748,16 @@ /obj/structure/cable, /turf/open/floor/iron/dark/textured, /area/station/command/heads_quarters/ce) -"vMX" = ( -/obj/structure/sign/poster/official/plasma_effects/directional/east, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/suit_storage_unit/medical, -/turf/open/floor/iron/white, -/area/station/medical/storage) +"vMK" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/port/fore) "vNa" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/iron/chapel{ @@ -80882,6 +80793,17 @@ /obj/structure/cable, /turf/open/floor/catwalk_floor, /area/station/maintenance/department/medical) +"vND" = ( +/obj/structure/table/wood, +/obj/item/plate/large{ + pixel_y = 2 + }, +/obj/item/food/pizza/dank{ + pixel_y = 6 + }, +/obj/structure/sign/poster/contraband/pwr_game/directional/east, +/turf/open/floor/carpet/purple, +/area/station/maintenance/floor1/port/aft) "vNF" = ( /obj/machinery/light/directional/west, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -81042,6 +80964,10 @@ dir = 1 }, /area/station/hallway/floor1/fore) +"vOP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/white, +/area/station/medical/abandoned) "vOW" = ( /obj/structure/disposaloutlet{ dir = 4 @@ -81055,13 +80981,6 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron/dark, /area/station/ai_monitored/turret_protected/aisat/service) -"vPu" = ( -/obj/machinery/light/dim/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/structure/cable, -/turf/open/floor/pod/dark, -/area/station/maintenance/floor4/port) "vPA" = ( /obj/effect/spawner/structure/window/hollow/reinforced/directional, /turf/open/floor/plating, @@ -81159,6 +81078,20 @@ }, /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{ @@ -81256,6 +81189,14 @@ }, /turf/open/floor/plating, /area/station/construction) +"vRX" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/structure/sign/poster/official/moth_meth/directional/south, +/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/medical/pharmacy) "vSa" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron/dark/side{ @@ -81276,27 +81217,18 @@ /obj/machinery/light/small/directional/east, /turf/open/floor/pod, /area/station/maintenance/floor4/port/fore) -"vSQ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/floor2/port) -"vSS" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/smes{ - charge = 5e+006 - }, -/turf/open/floor/circuit/telecomms, -/area/station/tcommsat/server/upper) "vSX" = ( /obj/structure/toilet{ dir = 4 }, /turf/open/floor/iron/showroomfloor, /area/station/service/kitchen/diner) +"vTd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/robot_debris/down, +/turf/open/floor/engine, +/area/station/maintenance/floor4/starboard/aft) "vTf" = ( /obj/machinery/airalarm/directional/west, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -81436,20 +81368,6 @@ }, /turf/open/floor/carpet/green, /area/station/service/bar/atrium) -"vVb" = ( -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal/delivery_chute{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/green/filled/arrow_cw, -/obj/structure/window/reinforced/tinted/spawner/directional/south, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/turf_decal/trimline/green/filled/mid_joiner, -/turf/open/floor/iron/dark/smooth_large, -/area/station/service/library/printer) "vVf" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -81602,15 +81520,6 @@ }, /turf/open/floor/pod/light, /area/station/maintenance/floor1/starboard) -"vXc" = ( -/obj/structure/grille/broken, -/obj/effect/turf_decal/trimline/red/line{ - dir = 5 - }, -/obj/effect/spawner/random/contraband/permabrig_weapon, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard/aft) "vXh" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/trimline/green/line{ @@ -81626,20 +81535,6 @@ /obj/machinery/duct, /turf/open/floor/wood, /area/station/service/bar/atrium) -"vXn" = ( -/obj/machinery/button/door/directional/south{ - id = "survhang"; - name = "Hangar Shutters" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/blood/tracks{ - dir = 10 - }, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard/aft) "vXr" = ( /obj/machinery/door/airlock/freezer{ name = "Cold Room" @@ -81650,25 +81545,6 @@ /obj/machinery/duct, /turf/open/floor/iron/kitchen_coldroom/freezerfloor, /area/station/service/kitchen/coldroom) -"vXG" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/structure/sign/poster/contraband/red_rum/directional/east, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron/showroomfloor, -/area/station/commons/fitness) -"vXH" = ( -/obj/machinery/airalarm/directional/south, -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/floor3/starboard/aft) -"vXM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/plumbed, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard/fore) "vXT" = ( /obj/structure/railing{ dir = 4 @@ -81702,12 +81578,6 @@ /obj/effect/spawner/random/trash/moisture_trap, /turf/open/floor/pod/dark, /area/station/maintenance/floor1/starboard/aft) -"vYD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/grille, -/turf/open/floor/plating, -/area/station/maintenance/floor1/port/aft) "vYH" = ( /obj/machinery/atmospherics/pipe/smart/simple/purple/visible/layer1{ dir = 6 @@ -81795,11 +81665,13 @@ }, /turf/open/floor/engine, /area/station/science/xenobiology) -"wab" = ( +"wai" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, /obj/effect/decal/cleanable/dirt, -/obj/structure/grille, -/turf/open/floor/plating, -/area/station/maintenance/floor2/port) +/turf/open/floor/engine, +/area/station/maintenance/floor4/starboard/aft) "wau" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -81828,6 +81700,19 @@ /obj/structure/sink/directional/north, /turf/open/floor/iron/white, /area/station/medical/surgery/fore) +"wbd" = ( +/obj/effect/turf_decal/tile/green/half{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock{ + name = "Escape Pod C" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/exit/escape_pod) "wbf" = ( /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, /obj/machinery/atmospherics/pipe/smart/simple/supply/visible/layer4, @@ -81874,12 +81759,11 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/dark, /area/station/hallway/floor4/fore) -"wbx" = ( +"wbu" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/oil, -/obj/effect/turf_decal/stripes, -/turf/open/floor/iron, -/area/station/maintenance/floor2/starboard/aft) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/medical/abandoned) "wbS" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -81902,6 +81786,12 @@ }, /turf/open/floor/iron/dark, /area/station/security/range) +"wcl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/grille/broken, +/turf/open/floor/plating, +/area/station/hallway/floor3/fore) "wcm" = ( /obj/structure/chair{ dir = 1 @@ -82042,6 +81932,11 @@ "wdd" = ( /turf/closed/wall, /area/station/medical/treatment_center) +"wde" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/mop, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard/fore) "wdj" = ( /obj/effect/turf_decal/trimline/green/filled/corner{ dir = 4 @@ -82132,6 +82027,12 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/ai_monitored/turret_protected/aisat_interior) +"wdY" = ( +/obj/machinery/atm/directional/north, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/hallway/floor3/fore) "wdZ" = ( /obj/machinery/conveyor{ dir = 6; @@ -82146,6 +82047,16 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/station/hallway/floor1/aft) +"wef" = ( +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server/upper) "weg" = ( /obj/structure/sign/poster/official/random/directional/east, /obj/effect/turf_decal/arrows, @@ -82200,6 +82111,13 @@ }, /turf/open/floor/iron, /area/station/commons/fitness/recreation) +"wfv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/medical/abandoned) "wfx" = ( /obj/machinery/door/window/brigdoor/left/directional/west, /obj/structure/cable, @@ -82210,6 +82128,18 @@ }, /turf/open/floor/carpet, /area/station/command/heads_quarters/captain) +"wfC" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/wardrobe/grey, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/port/fore) "wfD" = ( /obj/machinery/light/directional/east, /obj/structure/disposalpipe/segment{ @@ -82233,13 +82163,6 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/station/commons/dorms/apartment2) -"wfS" = ( -/obj/effect/turf_decal/trimline/purple/warning, -/obj/machinery/airalarm/directional/north, -/obj/effect/spawner/random/structure/crate, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/dark, -/area/station/maintenance/floor2/starboard) "wfT" = ( /turf/closed/wall, /area/station/engineering/atmos/office) @@ -82338,14 +82261,6 @@ "whR" = ( /turf/closed/wall, /area/station/service/bar) -"whU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/mirror/directional/north, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/structure/sink/directional/south, -/turf/open/floor/wood/large, -/area/station/maintenance/floor4/starboard/aft) "whV" = ( /turf/closed/wall, /area/station/maintenance/floor1/starboard) @@ -82355,16 +82270,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white, /area/station/medical/virology) -"wir" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/tracks{ - dir = 8 - }, -/turf/open/floor/engine, -/area/station/maintenance/floor4/starboard/aft) "wit" = ( /obj/structure/cable, /obj/effect/decal/cleanable/dirt, @@ -82416,14 +82321,6 @@ /obj/structure/sign/directions/ptl/directional/east, /turf/open/floor/engine, /area/station/engineering/supermatter/room) -"wiH" = ( -/obj/effect/turf_decal/siding/wood, -/obj/structure/table/wood, -/obj/effect/spawner/random/bureaucracy, -/obj/structure/window/reinforced/tinted/spawner/directional/north, -/obj/structure/window/reinforced/tinted/spawner/directional/east, -/turf/open/floor/carpet, -/area/station/commons/vacant_room/office) "wiJ" = ( /obj/effect/decal/cleanable/dirt, /obj/item/assembly/mousetrap, @@ -82448,6 +82345,14 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/station/engineering/lobby) +"wiO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/light_switch/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/solars/port/aft) "wiR" = ( /obj/structure/table, /obj/effect/turf_decal/tile/red, @@ -82523,6 +82428,21 @@ }, /turf/open/floor/iron/white, /area/station/medical/treatment_center) +"wkc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine, +/area/station/maintenance/floor4/starboard/aft) +"wkg" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/table/wood, +/obj/effect/spawner/random/bureaucracy, +/obj/structure/window/reinforced/tinted/spawner/directional/north, +/obj/structure/window/reinforced/tinted/spawner/directional/east, +/turf/open/floor/carpet, +/area/station/commons/vacant_room/office) "wkm" = ( /obj/effect/turf_decal/siding/wood, /obj/structure/cable, @@ -82530,19 +82450,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/wood/parquet, /area/station/medical/break_room) -"wkn" = ( -/obj/structure/cable, +"wku" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/medical/abandoned) -"wkr" = ( -/obj/item/storage/box/lights/bulbs, -/obj/structure/rack, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor1/port/aft) +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/pod, +/area/station/maintenance/floor4/starboard/aft) "wkv" = ( /obj/effect/turf_decal/tile/red/opposingcorners{ dir = 1 @@ -82561,18 +82475,6 @@ }, /turf/open/floor/catwalk_floor, /area/station/maintenance/floor2/port/aft) -"wky" = ( -/obj/effect/turf_decal/trimline/green/warning{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/dark, -/area/station/maintenance/floor2/starboard) -"wkF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/floor4/port/fore) "wkH" = ( /obj/effect/turf_decal/siding/wood{ dir = 6 @@ -82635,6 +82537,13 @@ /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, /turf/open/floor/iron/dark, /area/station/engineering/atmos/pumproom) +"wlC" = ( +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/window/spawner/directional/south, +/obj/structure/window/spawner/directional/north, +/obj/structure/window/spawner/directional/west, +/turf/open/floor/grass, +/area/station/hallway/secondary/exit/departure_lounge) "wlF" = ( /obj/effect/spawner/random/entertainment/arcade{ dir = 1 @@ -82721,6 +82630,18 @@ /obj/effect/baseturf_helper/reinforced_plating/ceiling, /turf/open/floor/iron/dark, /area/station/ai_monitored/turret_protected/aisat/hallway) +"wmy" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/spawner/random/maintenance, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/button/door/directional/east{ + id = "maint-shut"; + name = "Shutters Control" + }, +/turf/open/floor/plating, +/area/station/maintenance/floor2/port/aft) "wmz" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -82737,11 +82658,6 @@ }, /turf/open/floor/iron/dark, /area/station/engineering/supermatter/room) -"wmD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/toy/figure/syndie, -/turf/open/floor/pod/light, -/area/station/security/execution/education) "wmG" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 @@ -82789,6 +82705,11 @@ }, /turf/open/floor/iron, /area/station/hallway/floor3/aft) +"wnw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/structure/table_or_rack, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/port) "wnI" = ( /obj/structure/table, /obj/item/storage/toolbox/mechanical{ @@ -82821,6 +82742,20 @@ /obj/effect/decal/cleanable/glass, /turf/open/floor/pod/light, /area/station/maintenance/floor1/starboard/fore) +"wnT" = ( +/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) "woa" = ( /obj/structure/girder/reinforced, /obj/effect/spawner/structure/window/hollow/reinforced/plasma/middle{ @@ -82902,6 +82837,15 @@ /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron/checker, /area/station/service/bar) +"woJ" = ( +/obj/structure/rack, +/obj/item/trash/champagne_cork{ + pixel_x = 8; + pixel_y = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor1/port/aft) "woK" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/tile/red/half, @@ -82929,6 +82873,16 @@ }, /turf/open/floor/plating, /area/station/science/genetics) +"wpv" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 5 + }, +/turf/open/floor/iron/large, +/area/station/command/gateway) "wpE" = ( /obj/effect/turf_decal/stripes/white/line{ dir = 4 @@ -82956,6 +82910,14 @@ }, /turf/open/floor/iron/dark/side, /area/station/hallway/floor1/fore) +"wpU" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/structure/window/reinforced/tinted/spawner/directional/north, +/obj/structure/closet/masks, +/turf/open/floor/iron/dark, +/area/station/hallway/floor2/fore) "wpV" = ( /obj/structure/chair/sofa/bench/left, /obj/structure/cable, @@ -82998,17 +82960,6 @@ }, /turf/open/floor/plating/airless, /area/space/nearstation) -"wqF" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/rack, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/gloves/cargo_gauntlet, -/obj/item/clothing/gloves/cargo_gauntlet, -/obj/item/clothing/gloves/cargo_gauntlet, -/turf/open/floor/iron, -/area/station/cargo/warehouse) "wqN" = ( /obj/structure/disposalpipe/segment{ dir = 5 @@ -83017,6 +82968,11 @@ dir = 8 }, /area/station/hallway/floor1/aft) +"wqO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/structure/furniture_parts, +/turf/open/floor/pod/light, +/area/station/maintenance/floor2/port/aft) "wqS" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor, @@ -83077,6 +83033,19 @@ /obj/structure/sign/poster/random/directional/north, /turf/open/floor/pod/light, /area/station/maintenance/floor1/starboard/fore) +"wrA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/mess, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard) +"wrE" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/stripes/line, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/maintenance/floor2/port/aft) "wrJ" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 4 @@ -83117,6 +83086,14 @@ }, /turf/open/floor/pod/light, /area/station/maintenance/floor4/port/fore) +"wsk" = ( +/obj/machinery/door/airlock/command{ + name = "Rusted Airlock" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/floor2/starboard/aft) "wsl" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 @@ -83160,13 +83137,6 @@ /obj/machinery/duct, /turf/open/floor/iron/showroomfloor, /area/station/commons/fitness) -"wsH" = ( -/obj/effect/spawner/random/entertainment/arcade{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/station/maintenance/floor2/starboard) "wsL" = ( /obj/structure/table/wood, /turf/open/floor/bamboo/tatami/black, @@ -83180,6 +83150,16 @@ }, /turf/open/floor/iron/white, /area/station/medical/medbay/central) +"wsQ" = ( +/obj/effect/spawner/random/structure/chair_maintenance{ + dir = 8 + }, +/obj/item/toy/plush/pkplush{ + name = "Hug Emoji" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/floor4/starboard) "wsS" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -83266,10 +83246,6 @@ }, /turf/open/floor/iron/dark, /area/station/command/heads_quarters/hos) -"wtL" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/port) "wtM" = ( /obj/machinery/door/airlock/grunge{ name = "Courtroom" @@ -83298,6 +83274,15 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron/dark, /area/station/medical/morgue) +"wud" = ( +/obj/item/storage/bag/plants/portaseeder, +/obj/item/plant_analyzer, +/obj/item/cultivator, +/obj/structure/rack, +/obj/item/vending_refill/hydroseeds, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/floor4/starboard) "wug" = ( /obj/effect/spawner/random/structure/girder, /turf/open/floor/plating, @@ -83382,21 +83367,12 @@ }, /turf/open/floor/iron, /area/station/hallway/floor2/fore) -"wvg" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor2/starboard) "wvi" = ( /obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /obj/effect/decal/cleanable/blood/old, /turf/open/floor/iron/dark/textured, /area/station/medical/morgue) -"wvo" = ( -/obj/machinery/chem_dispenser, -/obj/structure/sign/poster/official/periodic_table/directional/east, -/turf/open/floor/iron/dark/textured, -/area/station/medical/pharmacy) "wvq" = ( /turf/open/floor/iron/dark, /area/station/command/teleporter) @@ -83445,21 +83421,6 @@ /obj/item/pneumatic_cannon/pie, /turf/open/floor/carpet/red, /area/station/service/theater) -"wwi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/pod/light, -/area/station/maintenance/floor3/port/aft) -"wwk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/textured_large, -/area/station/hallway/secondary/exit/departure_lounge) "wwm" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -83474,13 +83435,6 @@ }, /turf/open/floor/iron/dark, /area/station/hallway/floor1/fore) -"wwp" = ( -/obj/machinery/power/apc/auto_name/directional/south, -/obj/structure/cable, -/obj/structure/chair/stool/directional/north, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/station/service/abandoned_gambling_den) "wwu" = ( /turf/closed/wall, /area/station/maintenance/floor2/starboard/fore) @@ -83593,6 +83547,11 @@ /obj/structure/cable, /turf/open/floor/iron/white, /area/station/science/circuits) +"wxo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/graffiti, +/turf/open/floor/iron/white, +/area/station/medical/abandoned) "wxw" = ( /obj/item/radio/intercom/directional/south, /obj/machinery/door/airlock/public/glass{ @@ -83685,24 +83644,10 @@ /obj/effect/landmark/start/hangover/closet, /turf/open/floor/iron, /area/station/commons/fitness) -"wys" = ( -/obj/effect/turf_decal/tile/green/full, -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair/comfy/shuttle{ - dir = 4 - }, -/turf/open/floor/iron/dark/textured_large, -/area/station/hallway/secondary/exit/escape_pod) "wyv" = ( /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/iron, /area/station/security/range) -"wyC" = ( -/obj/effect/spawner/random/structure/crate_loot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/floor2/port/aft) "wyD" = ( /obj/effect/turf_decal/tile/red/full, /obj/machinery/atmospherics/components/unary/thermomachine/freezer{ @@ -83724,6 +83669,17 @@ /obj/structure/sign/poster/random/directional/south, /turf/open/floor/carpet/red, /area/station/service/theater) +"wyO" = ( +/obj/effect/turf_decal/caution/stand_clear/white{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/spawner/random/decoration/glowstick, +/turf/open/floor/pod, +/area/station/maintenance/floor4/starboard/aft) "wyU" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -83778,6 +83734,12 @@ /obj/item/kirbyplants/random, /turf/open/floor/iron/white/textured_large, /area/station/service/chapel/office) +"wzF" = ( +/obj/structure/sign/poster/official/random/directional/north, +/obj/machinery/space_heater, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard) "wzS" = ( /obj/structure/table, /obj/machinery/door/window/left/directional/north{ @@ -83833,6 +83795,19 @@ /obj/effect/turf_decal/tile/purple, /turf/open/floor/iron, /area/station/science/research/abandoned) +"wAv" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor2/starboard/aft) +"wAy" = ( +/obj/machinery/light/dim/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard/aft) "wAz" = ( /obj/machinery/vending/autodrobe, /obj/machinery/light_switch/directional/east, @@ -83848,6 +83823,15 @@ /obj/structure/table, /turf/open/floor/iron/checker, /area/station/commons/dorms/apartment2) +"wAK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/green/half{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/hallway/secondary/exit/escape_pod) "wAM" = ( /obj/effect/turf_decal/trimline/green/filled/corner{ dir = 1 @@ -83878,17 +83862,24 @@ }, /turf/open/floor/engine/airless, /area/station/engineering/atmos/pumproom) -"wBg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/robot_debris/up, -/obj/item/assembly/prox_sensor, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/iron, -/area/station/maintenance/floor2/starboard/aft) "wBq" = ( /obj/effect/turf_decal/tile/blue/half/contrasted, /turf/open/floor/iron/dark, /area/station/ai_monitored/turret_protected/ai_upload) +"wBu" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/shieldgen, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 4 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron/smooth, +/area/station/cargo/warehouse) "wBA" = ( /obj/structure/table, /obj/effect/turf_decal/tile/blue/fourcorners, @@ -83977,6 +83968,13 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/engine, /area/station/engineering/supermatter) +"wCv" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/purple/warning, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/dark, +/area/station/maintenance/floor2/starboard) "wCG" = ( /obj/effect/turf_decal/trimline/red/filled/corner{ dir = 1 @@ -83986,14 +83984,6 @@ dir = 5 }, /area/station/hallway/floor2/aft) -"wCR" = ( -/obj/effect/turf_decal/tile/red/anticorner, -/obj/structure/bed/maint, -/obj/item/reagent_containers/cup/glass/bottle/hooch, -/obj/structure/window/reinforced/tinted/frosted/spawner/directional/east, -/obj/structure/window/reinforced/tinted/frosted/spawner/directional/south, -/turf/open/floor/stone, -/area/station/maintenance/floor1/port) "wCX" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -84085,11 +84075,6 @@ /obj/item/storage/toolbox/mechanical, /turf/open/floor/iron/dark, /area/station/security/brig) -"wDS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/maintenance/floor3/port/aft) "wEr" = ( /obj/structure/rack, /obj/machinery/light/dim/directional/east, @@ -84257,13 +84242,6 @@ "wGl" = ( /turf/open/openspace, /area/station/maintenance/floor2/starboard) -"wGq" = ( -/obj/effect/decal/cleanable/blood/tracks, -/obj/effect/decal/cleanable/dirt, -/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/maintenance/floor2/starboard/aft) "wGA" = ( /obj/structure/window/spawner/directional/north, /obj/structure/table/reinforced, @@ -84330,16 +84308,6 @@ /obj/effect/turf_decal/tile/green/full, /turf/open/floor/iron, /area/station/service/janitor) -"wHa" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/red/line{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/textured_large, -/area/station/engineering/lobby) "wHe" = ( /obj/structure/table, /obj/machinery/cell_charger{ @@ -84362,15 +84330,12 @@ }, /turf/open/floor/iron/dark, /area/station/engineering/atmos/hfr_room) -"wHr" = ( +"wHk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/garbage{ - spawn_loot_count = 3; - spawn_scatter_radius = 1 - }, -/obj/structure/spider/stickyweb, -/turf/open/floor/pod/dark, -/area/station/maintenance/floor4/starboard) +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/medical/abandoned) "wHs" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -84382,10 +84347,6 @@ /obj/machinery/holopad, /turf/open/floor/iron/dark, /area/station/command/heads_quarters/hop) -"wHv" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) "wHw" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/green/half/contrasted{ @@ -84429,19 +84390,6 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/security/warden) -"wHV" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/item/stack/cable_coil/cut, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/floor2/port/aft) -"wIe" = ( -/obj/machinery/light/dim/directional/south, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/port/aft) "wIn" = ( /obj/structure/sign/poster/official/random/directional/west, /obj/structure/easel, @@ -84557,16 +84505,6 @@ /obj/structure/holosign/barrier/engineering, /turf/open/floor/iron, /area/station/engineering/atmos/project) -"wJq" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/port/fore) "wJx" = ( /obj/structure/table/wood, /obj/item/paint_palette, @@ -84584,6 +84522,12 @@ /obj/effect/spawner/random/trash/mess, /turf/open/floor/plating, /area/station/maintenance/floor1/starboard) +"wJE" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/dark, +/area/station/maintenance/floor2/starboard) "wJG" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -84614,13 +84558,6 @@ /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{ @@ -84710,6 +84647,11 @@ }, /turf/open/floor/iron/dark/side, /area/station/hallway/floor2/fore) +"wKt" = ( +/obj/structure/table/bronze, +/obj/item/book/bible, +/turf/open/floor/iron, +/area/station/service/chapel) "wKz" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 4 @@ -84724,6 +84666,13 @@ }, /turf/open/floor/plating, /area/station/maintenance/floor2/port/aft) +"wKB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/plating, +/area/station/maintenance/floor4/starboard/aft) "wKC" = ( /obj/effect/spawner/random/maintenance, /obj/effect/decal/cleanable/dirt, @@ -84779,14 +84728,6 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/entry) -"wLj" = ( -/obj/structure/rack, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/food_or_drink/condiment, -/obj/item/flashlight, -/obj/machinery/light/dim/directional/west, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard) "wLl" = ( /obj/structure/ladder, /obj/effect/turf_decal/stripes/white/line, @@ -84844,6 +84785,13 @@ }, /turf/open/floor/plating, /area/station/maintenance/floor2/port) +"wMf" = ( +/obj/effect/spawner/random/trash/garbage{ + spawn_scatter_radius = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor1/port/aft) "wMr" = ( /obj/machinery/door/airlock{ id_tag = "dorms_3_bolts"; @@ -84880,6 +84828,17 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/ai_monitored/command/storage/eva) +"wMP" = ( +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 4 + }, +/obj/machinery/light/small/blacklight/directional/west, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server/upper) "wMQ" = ( /obj/effect/turf_decal/bot, /obj/effect/spawner/random/structure/crate, @@ -84959,6 +84918,15 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/commons/dorms/room3) +"wNO" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/solars/starboard/aft) +"wNQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/maintenance/floor3/starboard/aft) "wNR" = ( /obj/machinery/airalarm/directional/west, /obj/structure/rack, @@ -84973,11 +84941,6 @@ }, /turf/open/floor/plating, /area/station/security/brig) -"wOd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/tank_holder, -/turf/open/floor/pod/light, -/area/station/maintenance/floor2/port/aft) "wOg" = ( /obj/effect/turf_decal/tile/brown{ dir = 4 @@ -85020,14 +84983,6 @@ /obj/effect/landmark/generic_maintenance_landmark, /turf/open/floor/pod/dark, /area/station/maintenance/floor2/starboard) -"wOy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/closet/toolcloset, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/port/fore) "wOE" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -85148,6 +85103,13 @@ dir = 1 }, /area/station/hallway/secondary/entry) +"wQi" = ( +/obj/machinery/atmospherics/components/unary/passive_vent{ + name = "killroom vent" + }, +/obj/structure/window/reinforced/plasma/spawner/directional/south, +/turf/open/floor/engine/telecomms, +/area/station/science/xenobiology) "wQo" = ( /turf/closed/wall, /area/station/security/prison/garden) @@ -85159,6 +85121,14 @@ dir = 1 }, /area/station/hallway/floor2/aft) +"wQx" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "aband_armour"; + name = "Armoury Shutters" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/maintenance/floor2/starboard/aft) "wQA" = ( /obj/machinery/door/window/brigdoor/right/directional/east{ req_access = list("maint_tunnels") @@ -85200,13 +85170,6 @@ /obj/effect/turf_decal/tile/blue/opposingcorners, /turf/open/floor/iron/dark, /area/station/hallway/floor4/fore) -"wQX" = ( -/obj/effect/decal/cleanable/blood/tracks{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/white, -/area/station/maintenance/floor3/starboard/aft) "wQY" = ( /obj/machinery/duct, /turf/open/floor/iron/dark/side, @@ -85309,20 +85272,6 @@ }, /turf/open/floor/iron, /area/station/service/hydroponics) -"wSP" = ( -/obj/machinery/door/airlock{ - name = "Escape Pod A" - }, -/obj/effect/turf_decal/tile/green/half{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/iron/dark/textured_half{ - dir = 1 - }, -/area/station/hallway/secondary/exit/escape_pod) "wSR" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron, @@ -85419,21 +85368,14 @@ }, /turf/open/floor/iron/kitchen, /area/station/service/kitchen) -"wUy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/green/half{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/station/hallway/secondary/exit/escape_pod) "wUA" = ( /turf/open/floor/iron/dark/textured, /area/station/medical/surgery/aft) +"wUC" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard/aft) "wUF" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -85484,6 +85426,13 @@ }, /turf/open/floor/engine, /area/station/command/heads_quarters/rd) +"wVa" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/floor3/port) "wVf" = ( /obj/effect/turf_decal/tile/blue/fourcorners, /obj/effect/mapping_helpers/airlock/access/any/medical/general, @@ -85519,13 +85468,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/catwalk_floor, /area/station/maintenance/floor1/port) -"wVr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/pod, -/area/station/maintenance/floor4/port/fore) "wVs" = ( /obj/structure/table, /obj/item/storage/toolbox/electrical, @@ -85544,6 +85486,12 @@ /obj/item/radio/intercom/directional/north, /turf/open/floor/pod/light, /area/station/maintenance/solars/starboard/aft) +"wVI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/spawner/random/structure/grille, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/port/aft) "wVN" = ( /obj/machinery/atmospherics/pipe/smart/simple/green/visible, /obj/machinery/meter, @@ -85606,10 +85554,6 @@ /obj/effect/turf_decal/trimline/purple, /turf/open/floor/iron/white, /area/station/science/xenobiology) -"wWo" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/white, -/area/station/maintenance/floor3/starboard/aft) "wWw" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -85652,6 +85596,11 @@ /obj/structure/reagent_dispensers/watertank, /turf/open/floor/pod/dark, /area/station/maintenance/floor2/starboard) +"wXw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/port/fore) "wXy" = ( /obj/machinery/airalarm/directional/north, /mob/living/basic/bot/cleanbot, @@ -85695,14 +85644,16 @@ /obj/machinery/light/directional/east, /turf/open/floor/iron/white, /area/station/science/lobby) -"wYl" = ( -/obj/effect/turf_decal/trimline/blue/line{ - dir = 4 - }, -/obj/structure/cable, +"wXZ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server/upper) +/turf/closed/wall/r_wall, +/area/station/maintenance/floor4/starboard) +"wYk" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/decal/cleanable/blood/tracks, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/white, +/area/station/maintenance/floor3/starboard/aft) "wYs" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/carpet, @@ -85722,6 +85673,14 @@ /obj/machinery/light/directional/south, /turf/open/floor/iron/dark, /area/station/commons/storage/tools) +"wYx" = ( +/obj/effect/turf_decal/trimline/blue/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server/upper) "wYB" = ( /obj/effect/turf_decal/tile/red{ dir = 8 @@ -85770,6 +85729,14 @@ dir = 8 }, /area/station/security/brig) +"wZb" = ( +/obj/item/stack/sheet/iron, +/obj/effect/decal/cleanable/blood/footprints{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/maintenance/floor3/starboard/aft) "wZr" = ( /obj/effect/turf_decal/trimline/blue/filled/corner, /obj/machinery/door/firedoor, @@ -85859,15 +85826,6 @@ /obj/structure/sign/poster/official/random/directional/south, /turf/open/floor/iron/dark/side, /area/station/hallway/floor4/fore) -"xaA" = ( -/obj/structure/window/reinforced/tinted/spawner/directional/south, -/obj/structure/mirror/directional/west, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/structure/sink/directional/east, -/turf/open/floor/iron/showroomfloor, -/area/station/commons/dorms/apartment1) "xaG" = ( /obj/machinery/light/directional/east, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -85950,11 +85908,6 @@ /obj/machinery/duct, /turf/open/floor/iron/white, /area/station/medical/medbay/central) -"xbF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/marker_beacon/burgundy, -/turf/open/floor/pod, -/area/station/maintenance/floor4/starboard/aft) "xbK" = ( /obj/structure/closet/emcloset/anchored, /turf/open/floor/pod/light, @@ -86003,14 +85956,6 @@ /obj/machinery/shieldgen, /turf/open/floor/plating, /area/station/maintenance/floor2/starboard/aft) -"xcA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/structure/window/hollow/reinforced/directional{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/floor1/port) "xcG" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -86020,6 +85965,14 @@ }, /turf/open/floor/wood/parquet, /area/station/medical/psychology) +"xcM" = ( +/obj/effect/turf_decal/trimline/green/arrow_cw{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/cargo/miningdock) "xcN" = ( /obj/structure/railing{ dir = 1 @@ -86091,15 +86044,6 @@ /obj/machinery/duct, /turf/open/floor/iron, /area/station/commons/toilet) -"xdm" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod, -/area/station/maintenance/floor4/starboard/aft) -"xdy" = ( -/obj/structure/closet/firecloset/full, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard/aft) "xdB" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -86250,6 +86194,11 @@ /obj/machinery/door/firedoor/border_only, /turf/open/floor/pod/light, /area/station/maintenance/floor3/port/aft) +"xfM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/firecloset, +/turf/open/floor/pod/light, +/area/station/maintenance/floor2/port/aft) "xfT" = ( /turf/open/floor/plating, /area/station/maintenance/floor1/port) @@ -86295,6 +86244,12 @@ "xgH" = ( /turf/closed/wall, /area/station/maintenance/floor1/port) +"xgI" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/iron/smooth, +/area/station/cargo/warehouse) "xgN" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -86414,11 +86369,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/textured_large, /area/station/cargo/miningdock) -"xhU" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard) "xhV" = ( /obj/item/restraints/handcuffs, /obj/structure/table/optable, @@ -86494,14 +86444,6 @@ /obj/structure/cable, /turf/open/floor/catwalk_floor/iron_dark, /area/station/maintenance/floor2/port/aft) -"xiL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/medical/abandoned) "xiO" = ( /obj/machinery/atmospherics/pipe/smart/simple/pink/visible/layer2{ dir = 4 @@ -86557,12 +86499,6 @@ }, /turf/open/floor/iron/dark, /area/station/security/checkpoint/first) -"xjX" = ( -/obj/structure/rack, -/obj/item/paint/paint_remover, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard/fore) "xkf" = ( /obj/effect/spawner/random/structure/crate_empty, /turf/open/floor/pod/light, @@ -86621,11 +86557,6 @@ /obj/structure/cable, /turf/open/floor/iron/white, /area/station/medical/medbay/central) -"xkG" = ( -/obj/structure/closet, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor1/port/aft) "xkN" = ( /obj/structure/flora/bush/sparsegrass/style_random, /obj/item/hatchet, @@ -86716,6 +86647,15 @@ /obj/machinery/camera/autoname/directional/north, /turf/open/floor/wood/tile, /area/station/service/library) +"xme" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/reinforced/plasmarglass, +/obj/item/reagent_containers/pill/cyanide{ + desc = "What could it be?"; + name = "red pill" + }, +/turf/open/floor/carpet/red, +/area/station/maintenance/floor3/port/aft) "xmh" = ( /obj/structure/table, /obj/effect/turf_decal/tile/green/opposingcorners, @@ -86730,6 +86670,14 @@ }, /turf/open/floor/wood/tile, /area/station/service/library) +"xmC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/structure/window/hollow/reinforced/directional{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/maintenance/floor1/port) "xmG" = ( /obj/effect/turf_decal/trimline/red/line{ dir = 1 @@ -86801,10 +86749,14 @@ }, /turf/open/floor/pod/dark, /area/station/maintenance/floor3/starboard/fore) -"xnw" = ( -/obj/structure/sign/poster/contraband/moffuchis_pizza/directional/east, -/turf/open/floor/carpet/royalblue, -/area/station/medical/break_room) +"xnu" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/floor2/starboard) "xny" = ( /obj/machinery/door/airlock/medical{ name = "CMO Quarters" @@ -86878,6 +86830,13 @@ "xpt" = ( /turf/open/floor/mineral/plastitanium, /area/station/maintenance/floor2/starboard/aft) +"xpy" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/red/line, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/pod/light, +/area/station/maintenance/floor3/port/aft) "xpA" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 @@ -86999,19 +86958,6 @@ dir = 4 }, /area/station/command/teleporter) -"xrj" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/solars/port/aft) -"xrq" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/engine, -/area/station/maintenance/floor4/starboard/aft) "xrs" = ( /obj/machinery/computer/shuttle/mining{ dir = 8 @@ -87036,15 +86982,6 @@ /obj/effect/turf_decal/tile/red/fourcorners, /turf/open/floor/iron/dark, /area/station/security/execution/education) -"xrY" = ( -/obj/machinery/button/door/directional/north{ - id = "survshop"; - name = "Workshop Shutters" - }, -/obj/effect/decal/cleanable/oil, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod, -/area/station/maintenance/floor4/starboard/aft) "xsf" = ( /obj/machinery/door/airlock/hatch{ name = "Maintenance Access" @@ -87137,10 +87074,14 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/service/hydroponics) -"xsX" = ( -/obj/structure/window/reinforced/tinted/frosted/spawner/directional/east, -/turf/open/openspace, -/area/station/maintenance/floor3/port) +"xsY" = ( +/obj/effect/turf_decal/trimline/red/line{ + dir = 9 + }, +/obj/effect/spawner/random/structure/crate_loot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard/aft) "xtd" = ( /obj/effect/turf_decal/tile/green{ dir = 1 @@ -87259,6 +87200,24 @@ /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) @@ -87279,15 +87238,6 @@ /obj/machinery/light/directional/north, /turf/open/floor/iron/white, /area/station/medical/psychology) -"xuR" = ( -/obj/structure/window/reinforced/tinted/spawner/directional/south, -/obj/structure/mirror/directional/east, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/structure/sink/directional/west, -/turf/open/floor/iron/showroomfloor, -/area/station/commons/dorms/apartment2) "xuW" = ( /obj/effect/turf_decal/trimline/red/line, /obj/effect/turf_decal/trimline/white/warning, @@ -87356,14 +87306,14 @@ }, /turf/open/floor/iron/kitchen, /area/station/service/kitchen) -"xvO" = ( -/obj/effect/decal/cleanable/oil, +"xvP" = ( +/obj/machinery/atmospherics/components/unary/portables_connector{ + dir = 1 + }, +/obj/effect/turf_decal/bot, /obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/pod, -/area/station/maintenance/floor4/starboard/aft) +/turf/open/floor/plating, +/area/station/maintenance/floor2/port) "xvW" = ( /obj/structure/cable, /obj/effect/turf_decal/stripes/white/corner{ @@ -87458,20 +87408,6 @@ /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, @@ -87553,6 +87489,10 @@ }, /turf/open/floor/engine, /area/station/science/cytology) +"xya" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard/fore) "xyb" = ( /obj/structure/cable, /turf/open/floor/plating, @@ -87601,6 +87541,16 @@ /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, @@ -87763,6 +87713,25 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/station/cargo/lobby) +"xBk" = ( +/obj/machinery/door/airlock/hatch{ + name = "Maintenance Access" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/structure/barricade/wooden{ + name = "wooden barricade (KEEP OUT)" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/footprints{ + dir = 8 + }, +/turf/open/floor/wood, +/area/station/service/abandoned_gambling_den) "xBl" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -87779,6 +87748,11 @@ /obj/structure/closet/l3closet/scientist, /turf/open/floor/iron/dark, /area/station/command/gateway) +"xBy" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured_large, +/area/station/cargo/storage) "xBB" = ( /obj/machinery/door/airlock/public{ id_tag = "theater_toilets"; @@ -87899,6 +87873,17 @@ /obj/machinery/newscaster/directional/north, /turf/open/floor/iron/smooth, /area/station/tcommsat/computer) +"xDk" = ( +/obj/machinery/shieldgen, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/red/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured_large, +/area/station/engineering/lobby) "xDm" = ( /obj/machinery/button/door/directional/south{ id = "theater_toilets"; @@ -87908,6 +87893,11 @@ }, /turf/open/floor/iron/showroomfloor, /area/station/service/theater) +"xDo" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/structure/sign/poster/contraband/grey_tide/directional/north, +/turf/open/floor/iron/dark/corner, +/area/station/commons/storage/primary) "xDw" = ( /obj/structure/closet/crate/trashcart, /obj/effect/spawner/random/contraband/prison, @@ -87960,6 +87950,17 @@ }, /turf/open/floor/plating, /area/station/maintenance/department/engine/atmos) +"xDR" = ( +/obj/effect/turf_decal/trimline/green/warning{ + dir = 1 + }, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/dim/directional/south, +/turf/open/floor/pod/dark, +/area/station/maintenance/floor2/starboard) "xDS" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -88071,13 +88072,6 @@ "xEP" = ( /turf/closed/wall/r_wall, /area/station/security/warden) -"xEY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/station/hallway/secondary/exit) "xFf" = ( /obj/effect/turf_decal/tile/green/half{ dir = 8 @@ -88143,6 +88137,14 @@ }, /turf/open/floor/iron, /area/station/engineering/atmos/hfr_room) +"xFQ" = ( +/obj/effect/spawner/random/structure/crate, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/maintenance/floor2/port/aft) "xFR" = ( /obj/effect/turf_decal/siding/thinplating_new{ dir = 1 @@ -88172,11 +88174,6 @@ "xGx" = ( /turf/open/floor/plating, /area/station/medical/abandoned) -"xGB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/medical/abandoned) "xGI" = ( /turf/closed/wall, /area/station/command/heads_quarters/ce) @@ -88204,18 +88201,6 @@ /obj/effect/mapping_helpers/airlock/access/all/supply/qm, /turf/open/floor/iron/textured, /area/station/command/heads_quarters/qm) -"xGT" = ( -/obj/item/emergency_bed, -/obj/item/emergency_bed{ - pixel_y = 3 - }, -/obj/item/emergency_bed{ - pixel_y = 6 - }, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/structure/table/glass, -/turf/open/floor/iron/white/textured, -/area/station/medical/medbay/central) "xGU" = ( /obj/effect/turf_decal/trimline/brown/warning{ dir = 4 @@ -88225,14 +88210,19 @@ /obj/item/pen, /turf/open/floor/pod/light, /area/station/maintenance/floor1/starboard/fore) +"xHd" = ( +/obj/machinery/power/emitter, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured_large, +/area/station/engineering/lobby) "xHe" = ( /turf/closed/wall, /area/station/maintenance/floor4/starboard/fore) -"xHf" = ( -/obj/structure/chair/wood, +"xHl" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet/green, -/area/station/service/abandoned_gambling_den) +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/station/maintenance/floor3/starboard/aft) "xHr" = ( /obj/structure/disposalpipe/segment{ dir = 10 @@ -88254,6 +88244,11 @@ "xHA" = ( /turf/closed/wall, /area/station/maintenance/disposal) +"xHQ" = ( +/obj/effect/turf_decal/trimline/brown/warning, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/dark, +/area/station/maintenance/floor3/port/aft) "xHR" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -88261,6 +88256,15 @@ /obj/machinery/firealarm/directional/east, /turf/open/floor/catwalk_floor, /area/station/maintenance/floor3/port/aft) +"xHS" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/iron/smooth, +/area/station/cargo/warehouse) "xHT" = ( /obj/effect/turf_decal/trimline/purple/filled/corner{ dir = 4 @@ -88325,6 +88329,11 @@ }, /turf/open/floor/plating, /area/station/security/brig) +"xIR" = ( +/obj/machinery/photocopier, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood/parquet, +/area/station/service/lawoffice) "xIX" = ( /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 8 @@ -88332,12 +88341,16 @@ /obj/machinery/vending/coffee, /turf/open/floor/iron, /area/station/hallway/floor3/aft) -"xJo" = ( +"xJn" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/airalarm/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/maintenance, +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 6 + }, /turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard/fore) +/area/station/maintenance/floor2/port/aft) "xJp" = ( /obj/item/canvas/twentyfour_twentyfour, /obj/structure/table, @@ -88422,6 +88435,16 @@ /obj/effect/spawner/random/structure/grille, /turf/open/floor/pod/light, /area/station/maintenance/floor3/port) +"xKT" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/red/line{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured_large, +/area/station/engineering/lobby) "xKZ" = ( /obj/machinery/light_switch/directional/north, /obj/machinery/shower/directional/west, @@ -88477,6 +88500,12 @@ "xLs" = ( /turf/open/floor/iron/dark/side, /area/station/hallway/floor2/fore) +"xLu" = ( +/obj/structure/rack, +/obj/item/storage/box/lights/mixed, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod/light, +/area/station/maintenance/floor1/port/aft) "xLw" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -88519,6 +88548,16 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/catwalk_floor, /area/station/maintenance/floor1/port/fore) +"xMd" = ( +/obj/effect/turf_decal/trimline/blue/corner, +/obj/structure/cable, +/obj/machinery/light/small/blacklight/directional/west, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server/upper) "xMk" = ( /turf/open/floor/wood/large, /area/station/medical/virology/isolation) @@ -88532,12 +88571,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/command/teleporter) -"xMG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/power/port_gen/pacman, -/turf/open/floor/circuit/telecomms, -/area/station/tcommsat/server/upper) "xMH" = ( /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /obj/machinery/door/airlock/hatch{ @@ -88592,6 +88625,10 @@ /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, @@ -88650,12 +88687,6 @@ }, /turf/open/floor/pod/light, /area/station/maintenance/floor1/port) -"xOC" = ( -/obj/structure/table/reinforced, -/obj/item/modular_computer/laptop, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/catwalk_floor/iron_dark, -/area/station/maintenance/floor2/starboard/aft) "xOF" = ( /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/iron/dark, @@ -88740,12 +88771,6 @@ /obj/structure/railing, /turf/open/floor/pod/dark, /area/station/maintenance/floor1/starboard/aft) -"xPX" = ( -/obj/machinery/light/dim/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/oil/streak, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard/aft) "xQc" = ( /obj/machinery/light/directional/east, /turf/open/floor/wood, @@ -88756,6 +88781,20 @@ /obj/machinery/status_display/evac/directional/south, /turf/open/floor/iron/dark/textured, /area/station/science/ordnance/storage) +"xQi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/robot_debris/up, +/obj/item/assembly/prox_sensor, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/iron, +/area/station/maintenance/floor2/starboard/aft) +"xQj" = ( +/obj/structure/closet/crate/large, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/station/maintenance/floor3/starboard/aft) "xQo" = ( /obj/effect/turf_decal/siding/wood, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -88765,13 +88804,6 @@ /obj/item/kirbyplants/random, /turf/open/floor/iron/dark, /area/station/hallway/floor1/aft) -"xQq" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor2/port/aft) "xQv" = ( /obj/structure/table, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -88817,14 +88849,6 @@ /obj/structure/flora/bush/sparsegrass/style_random, /turf/open/floor/grass, /area/station/service/library/garden) -"xRs" = ( -/obj/structure/rack, -/obj/item/reagent_containers/spray/cleaner{ - pixel_y = -5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor3/port/aft) "xRB" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -88836,6 +88860,15 @@ }, /turf/open/space/openspace, /area/space/nearstation) +"xRF" = ( +/obj/effect/turf_decal/trimline/blue/corner, +/obj/item/wrench, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server/upper) "xRG" = ( /obj/effect/landmark/generic_maintenance_landmark, /turf/open/floor/iron/dark/textured, @@ -88907,6 +88940,11 @@ /obj/structure/cable, /turf/open/floor/catwalk_floor, /area/station/maintenance/floor4/port/fore) +"xSz" = ( +/obj/structure/falsewall, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/floor3/port/aft) "xSB" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -88929,16 +88967,11 @@ /obj/structure/cable, /turf/open/floor/wood, /area/station/security/detectives_office) -"xTa" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "aband_armour"; - name = "Armoury Shutters" - }, +"xSV" = ( /obj/effect/decal/cleanable/dirt, -/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/maintenance/floor2/starboard/aft) +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/port) "xTw" = ( /obj/machinery/door/airlock/security{ name = "Monitoring" @@ -88994,11 +89027,6 @@ /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, @@ -89057,6 +89085,14 @@ /obj/structure/cable, /turf/open/floor/iron/white/textured_large, /area/station/service/chapel) +"xVG" = ( +/obj/effect/turf_decal/tile/red/anticorner{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted/frosted/spawner/directional/south, +/obj/structure/window/reinforced/tinted/frosted/spawner/directional/west, +/turf/open/floor/stone, +/area/station/maintenance/floor1/port) "xVJ" = ( /obj/structure/table, /obj/item/toy/cards/deck, @@ -89087,6 +89123,11 @@ /obj/machinery/light/dim/directional/north, /turf/open/floor/pod/dark, /area/station/maintenance/floor4/starboard) +"xVW" = ( +/obj/machinery/chem_dispenser, +/obj/structure/sign/poster/official/periodic_table/directional/east, +/turf/open/floor/iron/dark/textured, +/area/station/medical/pharmacy) "xWe" = ( /turf/closed/wall/r_wall, /area/station/science/auxlab) @@ -89110,6 +89151,14 @@ }, /turf/open/floor/iron, /area/station/engineering/atmos) +"xWp" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/generic_maintenance_landmark, +/turf/open/floor/engine, +/area/station/maintenance/floor4/starboard/aft) "xWq" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/shower/directional/west, @@ -89144,6 +89193,12 @@ dir = 1 }, /area/station/hallway/floor4/aft) +"xWL" = ( +/obj/item/storage/toolbox/electrical, +/obj/structure/table/glass, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/circuit/telecomms, +/area/station/tcommsat/server/upper) "xWM" = ( /turf/open/floor/iron/dark, /area/station/security/eva) @@ -89154,6 +89209,11 @@ /obj/machinery/bluespace_vendor/directional/south, /turf/open/floor/iron/dark/side, /area/station/hallway/floor1/fore) +"xWQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/port/fore) "xWV" = ( /obj/effect/turf_decal/tile/green/half, /obj/effect/landmark/navigate_destination/dockescpod, @@ -89184,11 +89244,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/wood, /area/station/medical/psychology) -"xXm" = ( -/obj/machinery/space_heater, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard) "xXo" = ( /obj/docking_port/stationary{ dheight = 1; @@ -89367,17 +89422,6 @@ dir = 8 }, /area/station/hallway/secondary/exit/departure_lounge) -"xZl" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/green/warning, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor2/starboard) "xZu" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -89434,6 +89478,15 @@ /obj/structure/cable, /turf/open/floor/catwalk_floor/iron, /area/station/hallway/secondary/exit/escape_pod) +"yaO" = ( +/obj/structure/toilet{ + pixel_y = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/newscaster/directional/east, +/obj/machinery/light/small/directional/west, +/turf/open/floor/iron/showroomfloor, +/area/station/service/theater) "yaR" = ( /obj/structure/sign/poster/official/random/directional/south, /turf/open/floor/wood/large, @@ -89481,16 +89534,6 @@ dir = 1 }, /area/station/cargo/sorting) -"ybr" = ( -/obj/structure/frame/computer{ - dir = 8 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 6 - }, -/obj/structure/window/reinforced/tinted/spawner/directional/east, -/turf/open/floor/wood, -/area/station/commons/vacant_room/office) "ybB" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 6 @@ -89649,18 +89692,15 @@ /obj/structure/table/reinforced, /turf/open/floor/iron/kitchen/herringbone, /area/station/service/kitchen) +"ydf" = ( +/obj/structure/sign/poster/contraband/eat/directional/east, +/turf/open/floor/pod/light, +/area/station/maintenance/floor1/port) "ydi" = ( /obj/machinery/firealarm/directional/south, /obj/effect/landmark/navigate_destination/chapel, /turf/open/floor/iron/chapel, /area/station/service/chapel) -"ydj" = ( -/obj/effect/turf_decal/trimline/blue/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server/upper) "ydm" = ( /turf/open/floor/plating, /area/station/construction/mining/aux_base) @@ -89917,20 +89957,16 @@ "ygT" = ( /turf/open/floor/wood, /area/station/service/bar/atrium) -"yhb" = ( -/obj/structure/flora/bush/sparsegrass/style_random, -/obj/structure/window/spawner/directional/north, -/obj/structure/window/spawner/directional/south, -/turf/open/floor/grass, -/area/station/hallway/secondary/exit/departure_lounge) -"yhj" = ( -/obj/structure/railing{ - dir = 1 +"ygZ" = ( +/obj/structure/table/wood/fancy/red, +/obj/item/flashlight/flare/candle{ + pixel_x = 1; + pixel_y = 7 }, /obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/closet_maintenance, +/obj/item/food/ready_donk, /turf/open/floor/pod/light, -/area/station/maintenance/floor2/port/aft) +/area/station/maintenance/floor3/port/fore) "yhn" = ( /obj/machinery/light/cold/no_nightlight/directional/north, /obj/effect/turf_decal/tile/purple/opposingcorners, @@ -89978,12 +90014,11 @@ /obj/effect/spawner/random/trash/hobo_squat, /turf/open/floor/pod/light, /area/station/maintenance/floor2/port/fore) -"yhX" = ( +"yhT" = ( +/obj/structure/reagent_dispensers/plumbed/fuel, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/textured_half{ - dir = 1 - }, -/area/station/hallway/secondary/exit/escape_pod) +/turf/open/floor/pod/light, +/area/station/maintenance/floor4/starboard/aft) "yhZ" = ( /turf/open/floor/iron/dark/smooth_large, /area/station/service/library/printer) @@ -90028,12 +90063,6 @@ }, /turf/open/floor/iron/dark/side, /area/station/hallway/floor2/fore) -"yiI" = ( -/obj/item/canvas/twentyfour_twentyfour, -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard/fore) "yiK" = ( /obj/effect/spawner/random/structure/table_fancy, /obj/structure/window/reinforced/spawner/directional/north, @@ -90046,11 +90075,6 @@ /obj/effect/landmark/blobstart, /turf/open/floor/grass/fairy, /area/station/maintenance/floor2/port/fore) -"yiZ" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/cargo/warehouse) "yjm" = ( /obj/structure/table, /obj/effect/decal/cleanable/dirt, @@ -90059,14 +90083,6 @@ /obj/structure/sign/poster/contraband/random/directional/east, /turf/open/floor/iron/dark, /area/station/commons/vacant_room/commissary) -"yjq" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/siding/wood, -/obj/item/paper_bin, -/obj/item/pen, -/obj/structure/window/reinforced/tinted/spawner/directional/east, -/turf/open/floor/carpet, -/area/station/commons/vacant_room/office) "yjz" = ( /obj/structure/table, /obj/item/stack/sheet/mineral/plasma{ @@ -90091,11 +90107,6 @@ /obj/effect/turf_decal/siding/wideplating_new/dark/corner, /turf/open/floor/engine/co2, /area/station/engineering/atmos) -"yjN" = ( -/obj/structure/closet/crate/trashcart/filled, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/starboard/fore) "yjR" = ( /obj/effect/turf_decal/siding/wideplating_new{ dir = 8 @@ -90120,11 +90131,6 @@ "ykb" = ( /turf/open/floor/wood, /area/station/commons/dorms/apartment1) -"yke" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/graffiti, -/turf/open/floor/pod/light, -/area/station/maintenance/floor4/port/fore) "ykr" = ( /obj/effect/spawner/random/structure/table_or_rack, /obj/item/reagent_containers/pill/maintenance, @@ -90138,25 +90144,12 @@ dir = 4 }, /area/station/hallway/floor3/aft) -"ykL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/firecloset/full, -/turf/open/floor/iron/dark/textured_large, -/area/station/hallway/secondary/exit/escape_pod) "ykP" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/iron, /area/station/engineering/atmos/pumproom) -"ykU" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/engineering/lobby) -"ykV" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/service) "ykW" = ( /obj/machinery/computer/records/security, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -90169,6 +90162,13 @@ }, /turf/open/floor/iron/showroomfloor, /area/station/commons/dorms/apartment1) +"yla" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine, +/area/station/maintenance/floor4/starboard/aft) "ylb" = ( /turf/open/floor/iron/dark, /area/station/hallway/floor1/aft) @@ -104745,21 +104745,21 @@ nhf nqj oWe rpr -tCS +jkt nqj lRO xYo bIG ycy -lvG +wlC siu ncu epv bkz -bpN +oRc aYa pvw -aFn +kmx ylE qiy hhx @@ -104770,7 +104770,7 @@ svs lJn wxH hpn -len +uij hhx kop kop @@ -104992,15 +104992,15 @@ imY lBR hpI jZE -lEC +vfc mdB mdB mGq -mMr +pvn mUe nhs nun -oWM +tzF nqj nqj nun @@ -105008,15 +105008,15 @@ taW xYo oGQ oVB -diK +cTl nlw ncu qVl gXG mmR -tlr +uHd hII -yhb +tjI dgb qCx mmv @@ -105027,7 +105027,7 @@ xJz lQm lQm aRS -hFa +tNw pRk kop kop @@ -105271,14 +105271,14 @@ cCu lUu ltR lUu -vhj +fLY hII byi ycy faw hhx glp -vHN +cXN kWd uMk apk @@ -105522,15 +105522,15 @@ usk xYo psK ycy -beb +hrZ nlw -wwk -gsN +vJb +aDw uZf qDt npR hII -yhb +tjI ycy nBW hhx @@ -105769,7 +105769,7 @@ mdB nrx bag mdB -mMr +pvn mdB pgo rqM @@ -105779,15 +105779,15 @@ mdB xYo viS vnE -llp +aHm xWx mit epv bkz -bpN +oRc npR nph -fbX +pLZ ycy nBW wBR @@ -106053,7 +106053,7 @@ jvY jvY rqx wBR -xEY +viv xlD rzK pRk @@ -106292,7 +106292,7 @@ aKc aLz xYo xYo -aDl +dNM nYP daf lDs @@ -106310,7 +106310,7 @@ gbU nJp ciH wBR -dzs +fEB ast isK hhx @@ -106560,7 +106560,7 @@ iUP inq qsF wUH -hyN +lym wBR pTR mIV @@ -106811,11 +106811,11 @@ nzk cVD nHT fRo -gdr +qzF jLI keF inq -rUr +kYn pqP oRw wBR @@ -107060,7 +107060,7 @@ xLb imY wKd fRA -oJl +tTA xYo bor xFm @@ -108603,7 +108603,7 @@ oic bpz ayv oiF -umg +uoB uFh qwA aQR @@ -109400,7 +109400,7 @@ qez qez qez cgi -ijs +vLV hJy hJy hJy @@ -109914,7 +109914,7 @@ wiJ xoN hJy hJy -ijs +vLV kAY hJy hJy @@ -110167,7 +110167,7 @@ hJy hJy eiM hJy -aJk +mHb qez gxW hJy @@ -110690,7 +110690,7 @@ izz hJy wnI mkk -cAU +vLT hJy hJy owI @@ -111190,7 +111190,7 @@ vIx hJy rXp oZW -tiC +hsS ifx hJy htg @@ -111202,7 +111202,7 @@ cgi cgi hJy xtY -kEu +vlt foK jAO hJy @@ -111460,7 +111460,7 @@ bvU hJy upS plI -mcu +jKr iuP hJy hJy @@ -111678,7 +111678,7 @@ rJR sBT oic oic -gUv +gQC oic oic hmn @@ -111934,7 +111934,7 @@ sBT sBT sBT oic -aMx +dVr uNF uaJ oic @@ -112192,7 +112192,7 @@ oic sBT vnp uaJ -ixt +qrC uNF oic jrx @@ -112449,7 +112449,7 @@ oic sBT oic uNF -ekz +ojP oic oic jrx @@ -112951,18 +112951,18 @@ owI owI aQK aQK -dob -bJI +nCB +hSr aQK aQK aQK aQK -gUS +bim nOj dzo -bUC -yiZ -unC +gPY +hAL +lUs wMQ ncc nYh @@ -112975,7 +112975,7 @@ oOc bCz prw rze -vvT +gaa rpj ppf vsv @@ -113208,19 +113208,19 @@ owI owI aQK aQK -sMk -fTs -fNv -szr -hFC +nNy +bnm +mNq +vQF +nri aQK rGF -yiZ -yiZ -bUC -mwZ -rCK -lUY +hAL +hAL +gPY +lWT +fCo +dWC ncc dJc jrx @@ -113465,19 +113465,19 @@ owI owI aQK aQK -ifn -fhi -veD -kIn -uUi +bFU +iuv +uHw +tCm +pYs gfn -hBR -qWJ -qWJ +jYE +aPK +aPK imO -vfG +nAp vNZ -eYY +mzz ncc nYh jrx @@ -113722,18 +113722,18 @@ owI owI aQK aQK -lGu -bVH -pjG -asE -lzV +xyT +qlP +ixP +xur +qsc gfn -rYA -eEB -lUY -bUC -yiZ -yiZ +xgI +xHS +dWC +gPY +hAL +hAL mMH ncc utu @@ -113981,15 +113981,15 @@ aQK aQK aQK aQK -taC -hKX +xNr +lBb aQK aQK -fxr -fve -aSL -iCn -ooP +wBu +fOp +sPO +oUY +qjz jUP jUP ncc @@ -114242,11 +114242,11 @@ gFU kHQ mLq aQK -vtj -tLt -iHZ -lSJ -wqF +ruM +hnf +myw +lIl +nFp jUP gVm hIV @@ -114499,11 +114499,11 @@ wZu vTt vOD aQK -pCW -rhs -dmk -lSJ -mxC +aSp +uDa +fRe +lIl +ldB jUP gYy myW @@ -114757,10 +114757,10 @@ xxQ rww aQK jUP -prt +fSZ jUP -bkx -gcj +gfO +cuq jUP gWv new @@ -114783,7 +114783,7 @@ brj btN bvG brj -axz +nTQ abn ari ddB @@ -116330,7 +116330,7 @@ aDr sqy jKO vWG -acj +vDq brj brj xtP @@ -116816,7 +116816,7 @@ dOs oCK gjR izq -iJG +uGW izq abU wOg @@ -116854,11 +116854,11 @@ xgH xgH rLU xgH -xcA -xcA -sKE -sKE -sKE +xmC +xmC +iKr +iKr +iKr xgH xgH owI @@ -117072,7 +117072,7 @@ dOs bxs oCK bZr -gun +bky tHL rbT hLP @@ -117111,7 +117111,7 @@ xgH cfC ksu xgH -sKE +iKr uZk uZk uZk @@ -117368,7 +117368,7 @@ xgH oJO dJO xgH -sKE +iKr uZk ebN gQI @@ -117625,7 +117625,7 @@ xgH xgH uFQ xgH -sKE +iKr uZk xYE vRB @@ -117845,7 +117845,7 @@ oCK bZr hBw tHL -aJE +xBy hLP ejg syp @@ -117882,7 +117882,7 @@ wVn wVn wVn xgH -sKE +iKr uZk kXo dNA @@ -118101,7 +118101,7 @@ dOs dRo mjQ rbT -ijL +eTl nAm hLP ydt @@ -118873,7 +118873,7 @@ dfY qDV kwK tHL -aJE +xBy hLP ydt oYn @@ -119638,7 +119638,7 @@ wZN lWH lNE pZU -leE +nNw cmT sMS mar @@ -120164,7 +120164,7 @@ hXa oIi qly pEv -nPy +cym dpH juI ksz @@ -120187,7 +120187,7 @@ kzE rTt dyS xgH -sFr +brr qRz xgH xgH @@ -120678,7 +120678,7 @@ ehG ehG uNn hUk -cKH +gtI dpH dpH dpH @@ -120959,7 +120959,7 @@ xgH dyS xgH pxb -jQf +ydf enB xgH wVn @@ -121195,7 +121195,7 @@ pEv pnr eur tQf -qzm +vmh gtX gUO dpH @@ -121449,11 +121449,11 @@ olh ehG mMn pEv -dsl +xcM bgO lJq fdx -hah +uoQ aKY dpH jYS @@ -121963,7 +121963,7 @@ tEL tnz khh pEv -htc +lae ehG ehG ehG @@ -122475,7 +122475,7 @@ ehG ehG ehG ehG -bLt +uDh qeW rim njk @@ -122509,9 +122509,9 @@ kzE lJk twx mEa -lAE -rYa -ksG +rVj +lLH +xVG njQ xgH xgH @@ -122736,9 +122736,9 @@ apM quB nYw ehG -gGP +kGk nsr -urD +bxL dpH fvS rjD @@ -122751,7 +122751,7 @@ tcJ hBY kzE cgT -gyc +hjD lUH ucf kLc @@ -122766,9 +122766,9 @@ kzE bMz eOY mEa -sat +dRD xrB -lqD +cxi njQ xgH xgH @@ -123023,9 +123023,9 @@ kzE twx oTc mEa -gFf -sfM -wCR +cPb +eQc +tBn njQ xgH xgH @@ -123522,7 +123522,7 @@ cAu vBW kzE okL -gOh +ehi lfL bOB kLc @@ -123790,9 +123790,9 @@ hLX hLX hLX lkE -tqa -fKC -hzV +pvX +rRl +cwe xgH xgH saR @@ -124048,7 +124048,7 @@ kbE hjd lHw jQb -hzV +cwe vLM lBB xgH @@ -124291,7 +124291,7 @@ xgH wVn xgH hXe -oFL +uTr aHM kzE qWe @@ -124305,8 +124305,8 @@ kOR jJs kOR wCn -nVP -ssi +idL +liU tkz xgH dxS @@ -124563,7 +124563,7 @@ kzE kzE kzE wAe -mYo +eOT ciP xgH wVn @@ -124819,8 +124819,8 @@ xgH twx jCU xMH -ooC -pFi +mVx +cyd qHH xgH oBQ @@ -125830,15 +125830,15 @@ cax mFW kSN xgH -sKE -sKE -sKE -sKE -sKE -sKE -sKE -sKE -sKE +iKr +iKr +iKr +iKr +iKr +iKr +iKr +iKr +iKr aIV aIV aIV @@ -126847,7 +126847,7 @@ qzg afe pRY nhu -olZ +xDo nAu kPk kQb @@ -128121,7 +128121,7 @@ irp kxq nJK nBx -cFY +jYB rIS cEP kqP @@ -128133,9 +128133,9 @@ dMm cjx nhu ica -vdc -sZL -vrh +pDn +sXJ +lEc qsy nhu fkf @@ -128378,7 +128378,7 @@ hMw cdS siA xUc -sMm +mmO rIS hkq hkq @@ -128634,10 +128634,10 @@ eAm khr vgx khr -ukf +qEC aWy bpu -uXL +jlK nuM mxD mxD @@ -128676,8 +128676,8 @@ twx hdA tIj lBv -upP -upP +uLw +uLw xfT vEt xgH @@ -128932,7 +128932,7 @@ hdA hdA hdA tIj -upP +uLw ltn vnt uHx @@ -129189,7 +129189,7 @@ xgH xgH eVh pJg -bsG +lRU sph vyF uHx @@ -129446,7 +129446,7 @@ cJB xgH hdA lzZ -oxO +rcD xfT xfT uHx @@ -129921,7 +129921,7 @@ ayB peC oIJ aPA -bKa +bnH phL tti lKb @@ -130178,7 +130178,7 @@ aux ugD xeO fjG -bKa +bnH aQJ tti vUt @@ -130478,7 +130478,7 @@ xgH hdA hdA hdA -iXi +kgv xgH xgH owI @@ -131207,8 +131207,8 @@ ugD xeO bRd qXk -bKa -bKa +bnH +bnH gmw rdx aAB @@ -132005,8 +132005,8 @@ mdQ dHf dHf xgH -sKE -sKE +iKr +iKr xgH aKt twx @@ -132523,7 +132523,7 @@ sjs oFr bbN kzE -sKE +iKr xgH wxx xdN @@ -132780,7 +132780,7 @@ xdT vMJ vgn kzE -sKE +iKr xgH bMd vcr @@ -133033,7 +133033,7 @@ nPb qDs kSF cpE -vwC +wnT qIf xGI kzE @@ -133537,7 +133537,7 @@ wRe jEw wmU nDw -bhp +bSD jPh wmU emj @@ -133782,14 +133782,14 @@ xeO izY vgm rBP -tNf +deD bWd izm -gkI +qTJ rBP dnT jUo -dFT +gkU hur yib wmU @@ -133797,7 +133797,7 @@ nDw obA jPh wmU -pVZ +hmT uKL rGe mkd @@ -134034,15 +134034,15 @@ awb xFJ mqI kIe -fxo +hvk uvD ocv nJb rBP -iTu +xDk iko -vHz -qoG +gSC +dbr rBP cJh xND @@ -134290,15 +134290,15 @@ mMu hkq rLx cYR -blI -gkx +ajz +guU xeO vsL kfg rBP -fxd +toW haK -gHV +aAA haK art jUR @@ -134333,7 +134333,7 @@ wtm wtm vcr vFE -oxz +blr vcr vcr owI @@ -134547,15 +134547,15 @@ ayB peC oIJ cmi -blI +ajz pJG kDg vsL kDg rBP iht -ykU -mMO +pHs +lFI tCC art hKq @@ -134811,14 +134811,14 @@ vsL kDg rBP kjF -dcp -wHa -dcp +kWy +xKT +kWy rBP kIG uxX rBP -gvk +aCg cFc rBP cOX @@ -134831,7 +134831,7 @@ rBP uMl oOd otD -kBI +dEr dEc ulU vcr @@ -135068,8 +135068,8 @@ vsL kDg rBP dFR -mHk -mZZ +xHd +dlQ tDE rBP wYB @@ -136108,7 +136108,7 @@ sly uyD aFJ mMq -mdu +kQJ uyD sHL ddT @@ -136128,7 +136128,7 @@ wss vcr iNe bCM -cgx +cfb aSj nhU vcr @@ -136385,7 +136385,7 @@ iav vcr xbz bCM -grD +iUv aSj wor vcr @@ -136897,11 +136897,11 @@ vcr uov qju vcr -txv +nSx wRS pJC pJC -txv +nSx vcr uov vcr @@ -137157,8 +137157,8 @@ vcr vcr iJc lzI -lIP -mDR +eXS +gPQ vcr uov vcr @@ -137413,9 +137413,9 @@ uov uov vcr hoy -lCT -lIP -uWi +hPs +eXS +ghG vcr uov vcr @@ -138440,13 +138440,13 @@ uov eAP uov vcr -pJu -ekk -izI +pVa +tBQ +svz vcr -wkr -aHt -pGr +jsj +peJ +xLu vcr dEc owI @@ -138685,8 +138685,8 @@ cFt iMY cFt dEc -hTU -aHt +ihv +peJ uov vcr vcr @@ -138697,13 +138697,13 @@ vcr vcr uov cHu -lJE -aXO -aHl +gyE +tFq +qni vcr -pcg -oSz -pGr +muQ +wMf +xLu vcr dEc dEc @@ -138942,8 +138942,8 @@ rqc oYd pJh gYc -evz -evz +dQz +dQz klO klO uov @@ -138954,13 +138954,13 @@ uov uov uov vcr -izI -fGK -ekk +svz +woJ +tBQ vcr -wkr -cIp -pGr +jsj +lKr +xLu vcr vcr dEc @@ -139199,10 +139199,10 @@ owI gXd owI dEc -eBu -aHt -rfo -rUq +sBr +peJ +pLz +teK vcr vcr vcr @@ -139458,11 +139458,11 @@ cHX dEc dEc dEc -xkG -aHt +eOa +peJ vcr -psx -oHa +dfM +udG fTE fTE vcr @@ -139475,8 +139475,8 @@ dFq oEo oHx dEc -vYD -vYD +hRJ +hRJ dEc dEc owI @@ -139715,12 +139715,12 @@ owI oyh kVp dEc -eBu -aHt +sBr +peJ vcr iFn -odS -hzx +rEz +uYX pED vcr uov @@ -139733,7 +139733,7 @@ ifS iWE dEc dEc -vYD +hRJ vcr dEc owI @@ -139972,12 +139972,12 @@ owI oyh kVp dEc -jVM -oSz +hFM +wMf vcr -duw -odS -rkc +pzy +rEz +vND pCv vcr deF @@ -139990,7 +139990,7 @@ fHy fSS fIK dEc -vYD +hRJ vcr dEc owI @@ -140247,7 +140247,7 @@ fFY bHw fFY dEc -vYD +hRJ vcr dEc dEc @@ -140504,8 +140504,8 @@ fHb fXU gyz dEc -vYD -vYD +hRJ +hRJ vcr dEc owI @@ -140761,8 +140761,8 @@ cIT bKP ogc dEc -vYD -vYD +hRJ +hRJ vcr dEc owI @@ -141018,8 +141018,8 @@ fKi sdo kdu dEc -vYD -vYD +hRJ +hRJ vcr dEc owI @@ -141275,8 +141275,8 @@ ksN fDT gKg dEc -vYD -vYD +hRJ +hRJ vcr dEc owI @@ -141532,8 +141532,8 @@ fNK gdM gdM dEc -vYD -vYD +hRJ +hRJ vcr dEc owI @@ -142247,13 +142247,13 @@ owI teq sKt gxE -jMa +kjL gxE gxE -jMa +kjL gxE gxE -jMa +kjL jFh sKt xPW @@ -142297,13 +142297,13 @@ oyh clF dEc cjC -pOL +ahr ueS aZW -pOL +ahr mXC aZW -pOL +ahr bME vcr dEc @@ -173110,7 +173110,7 @@ rbh wcn lJZ sTq -kKJ +dbD wwu rtm kwl @@ -173367,7 +173367,7 @@ rbh bDr bDr sTq -jEe +rii wwu okK cvC @@ -176208,7 +176208,7 @@ lgk shi tqW shi -faj +wpU fME gtO hLz @@ -176465,7 +176465,7 @@ shi shi tqW shi -fci +due fRa gAp hLz @@ -176722,7 +176722,7 @@ lxD lxD lPz shi -ffd +fph fRd gFy hLz @@ -177236,7 +177236,7 @@ yaX shi qKp shi -fhY +iif fVe gWj hLz @@ -177461,10 +177461,10 @@ wwu wwu cwq iKw -ooY -ooY -vbs -duX +nWU +nWU +isP +kjP sxy sbm wvR @@ -177493,7 +177493,7 @@ qia shi dhX shi -fci +due fWh lJS hLz @@ -177718,9 +177718,9 @@ wwu wwu cwq hxW -qnI -eOo -dXb +jDA +voP +qKU xuv xuv xuv @@ -177750,7 +177750,7 @@ qia shi dsb shi -flw +mYG fWp gXo hLz @@ -181096,7 +181096,7 @@ jjF mxd jjF iit -iNs +nmM jjF bSh hLz @@ -181314,8 +181314,8 @@ ucA ucA wwu wwu -qLo -qOh +oVh +jfR wwu hcF wwu @@ -181353,7 +181353,7 @@ glY hoX jjF ilG -iPr +nHN jgJ jtQ hLz @@ -181571,7 +181571,7 @@ ucA ucA gqP gqP -sxK +kto uVj wwu cwq @@ -181828,7 +181828,7 @@ ucA ucA wwu wwu -qOh +jfR uVj wwu gjh @@ -182085,8 +182085,8 @@ ucA ucA wwu wwu -qqu -hJD +gEA +azc wwu wwu wwu @@ -182342,13 +182342,13 @@ ucA ucA gqP gqP -qOh -qOh +jfR +jfR tDI xYg pzT wwu -tXg +ltl cwq xuv cZk @@ -182605,7 +182605,7 @@ sbm cQj nOZ wwu -tXg +ltl cwq ihW pUr @@ -183116,10 +183116,10 @@ wwu jYo wwu wwu -gvQ -gvQ +oCQ +oCQ xEo -tXg +ltl cwq xuv agh @@ -183370,8 +183370,8 @@ ucA ucA wwu wwu -tXg -tXg +ltl +ltl hgC cwq xtC @@ -183892,10 +183892,10 @@ hge dPi hge oiO -xUp +mId aeI aiN -hdw +uKx anN vIp asz @@ -184165,7 +184165,7 @@ qAG qAG qAG dpL -iVH +ivd rtv lES jvv @@ -184699,9 +184699,9 @@ kqy uHu kQO wVY -ruE +utG nlL -sBU +mZF oAU qFO wVO @@ -185213,7 +185213,7 @@ cmG gsp cmG wVY -lmV +bAS xQo kor rQX @@ -186500,7 +186500,7 @@ iZe wVY djo cUm -xnw +pzl aSa aal iiA @@ -186997,7 +186997,7 @@ jyD tQq aWc hDE -tTT +uHn nhJ evq hbT @@ -187008,7 +187008,7 @@ wcB gFE mYN vzt -xGT +huP sCs nMO gXY @@ -187514,7 +187514,7 @@ hDE ilg gmj unV -cjm +vRX kKr aUz mAb @@ -188045,9 +188045,9 @@ gXY gXY gXY aal -hgT -kFd -rRg +acf +bKm +nTH jHr aal aal @@ -188253,13 +188253,13 @@ ucA ucA vnK vnK -gjC -hJU +wCv +wJE uZg vnK -mrq -rJr -uzw +uck +ngz +rzV vnK sLL aEf @@ -188290,7 +188290,7 @@ obM kKr dXt wRD -viE +gOk okN cBa dYv @@ -188302,9 +188302,9 @@ jZe bYn rBK aal -lbt +hHt hAg -nRS +qgn biS aal aal @@ -188510,13 +188510,13 @@ ucA ucA vnK vnK -oIo -tFM +fWo +rfP mOb vnK -fmQ -uOq -lWR +cdP +xnu +ayw vnK tIF eZN @@ -188559,9 +188559,9 @@ uQN wmQ wba aal -jqJ -rou -gfF +fXQ +uxb +pRv jHr aal aal @@ -188767,13 +188767,13 @@ ucA ucA vnK vnK -wfS -ioD +mBc +fAv uZg vnK -nlo -fVk -nlo +cnJ +uxe +cnJ vnK vnK vnK @@ -189028,9 +189028,9 @@ fov vnK qKR vnK -nQG -qdO -qtY +dSO +rjH +gwW vnK dpN wob @@ -189282,7 +189282,7 @@ ucA vnK vnK ggg -pro +haY kpt vnK vnK @@ -189328,7 +189328,7 @@ fdW quE tWV nTx -kSn +rAx aal sjN sjN @@ -189542,7 +189542,7 @@ vnK vnK uBW kpt -sHv +nRn kpt kRS kRS @@ -189802,10 +189802,10 @@ gQA wJI vnK tTw -cnL +vke wug -uKz -bXC +upB +ixa vnK qJa dYx @@ -190061,7 +190061,7 @@ vnK vnK vnK vnK -jxK +rYb aQV iOA qun @@ -190315,8 +190315,8 @@ vnK vnK wJI vnK -wsH -lpB +mWE +jsy vnK wGl wGl @@ -190338,7 +190338,7 @@ bYg tQq aWc hDE -wvo +xVW nRQ olS lXz @@ -190572,7 +190572,7 @@ voA wJI wJI qvk -sff +aYc dsw erN wGl @@ -190826,10 +190826,10 @@ vnK vnK fdr vnK -hbe +mCx iak vnK -tvB +tHq ojU vnK lci @@ -190870,7 +190870,7 @@ cuL adB sYd jyd -nwM +ocY aal evx nca @@ -191089,7 +191089,7 @@ vnK vnK vnK vnK -sHB +vfH iOA iOA sJn @@ -191339,14 +191339,14 @@ ucA vnK vnK wJI -ndL +xDR vnK vaC dUU -tdA +oum dnJ -cTJ -wvg +rwO +knn iOA mRQ viV @@ -191598,11 +191598,11 @@ vnK wJI xeM geb -gns -fcz +hpw +ugm wGl wGl -xZl +mBr lba iOA usZ @@ -191630,7 +191630,7 @@ tou aHk lGB oIU -azp +dYz bKb omk omk @@ -191855,8 +191855,8 @@ vnK wJI vnK vnK -mgq -iPV +cMC +mMW kVm wGl gIa @@ -192112,11 +192112,11 @@ vnK wJI vnK eQD -hgB -sDp -fzG -jlJ -eYp +hCw +tOt +nRt +fdQ +ryK wXs iOA aAi @@ -192376,7 +192376,7 @@ uJi vnK vnK iOA -iUe +uBM pZm wJy tKr @@ -192629,7 +192629,7 @@ oHr bXh vnK jUJ -iDh +hRs vnK dVf iOA @@ -192667,7 +192667,7 @@ utM jmr nUa qUE -vMX +msS lzp vBk lkL @@ -192881,12 +192881,12 @@ ucA vnK vnK wJI -okI +cIX oHr uyL vnK uhu -iDh +hRs vnK dVf iOA @@ -192920,7 +192920,7 @@ slQ kMl lXO nrm -jMd +lek kkF nUa nUa @@ -193142,8 +193142,8 @@ olA vnK vnK vnK -ogA -nFq +cwB +mJi vnK dVf iOA @@ -193652,9 +193652,9 @@ ucA vnK vnK nmK -wky +fVB vnK -tnN +bPF xYQ pjX pog @@ -193911,11 +193911,11 @@ vnK wJI xyM kMk -gFO +uJF bAP bAP -gFO -gFO +uJF +uJF xVt gEL vnK @@ -194168,12 +194168,12 @@ vnK wJI vnK vnK -qVe -ejI -oyN -ooQ +oDp +teX +toB +juu wug -gFO +uJF vnK vnK vnK @@ -195752,7 +195752,7 @@ aal aal aal aal -wab +cie aal ybG mbi @@ -196008,8 +196008,8 @@ mgc iHc vHt aal -wab -wab +cie +cie aal uxP mbi @@ -198287,8 +198287,8 @@ cvg hkz pOH oIS -ipu -aUe +fbR +cXK dEt aPc sPu @@ -198540,12 +198540,12 @@ dEt dEt mPw pNI -dxK +cnf oIS -dxK -dxK -wbx -pJs +cnf +cnf +pAg +rvV dEt nmF igR @@ -198579,8 +198579,8 @@ bsK bxr bzY aal -wab -wab +cie +cie aal ybG iRN @@ -198800,7 +198800,7 @@ eHk meB fxm pJA -wBg +xQi fpN axf dEt @@ -199053,15 +199053,15 @@ oyh dEt kJU mPw -sQa +kPl spr spr del spr -jFB -pJs +rfN +rvV rif -dGe +mEZ uZF sHs uiH @@ -199096,7 +199096,7 @@ lcv hAg hAg wYM -vSQ +faU rCz ybG xhf @@ -199310,7 +199310,7 @@ oyh dEt xcw mPw -sQa +kPl spr aOa vyv @@ -199318,7 +199318,7 @@ spr pxw rrk awA -jBf +nrS uZF rlI pPL @@ -199353,7 +199353,7 @@ jer hAg hAg wYM -vSQ +faU rCz tfR aal @@ -199824,12 +199824,12 @@ oyh tFm oHL mPw -vhq +vtL spr aOa xpt spr -gri +juo fkD dEt lYb @@ -199837,9 +199837,9 @@ uZF uZF uZF uZF -svu -svu -svu +rux +rux +rux cuR wxY hsI @@ -200081,7 +200081,7 @@ oyh dEt dEt mPw -sQa +kPl spr kSX kSX @@ -200094,7 +200094,7 @@ mPw mPw mPw uZF -svu +rux uZF uZF uZF @@ -200124,7 +200124,7 @@ lcv pJv iiA lfy -sZY +iRS lcv ybG aal @@ -200340,9 +200340,9 @@ dEt mPw tIT oIS -dxK +cnf oIS -dxK +cnf kgY mPw dEt @@ -200351,7 +200351,7 @@ bET kFp mPw uZF -svu +rux uZF noO ijZ @@ -200378,9 +200378,9 @@ opr byI bAn lcv -rzA -gFz -tez +rVC +xvP +aOn iiA lcv ybG @@ -200595,12 +200595,12 @@ oyh dEt dEt mPw -dge +voc bRI -ueC -ueC +ugp +ugp bRI -nIB +sNz mPw dEt dEt @@ -200608,7 +200608,7 @@ loM dEt mPw uZF -svu +rux uZF lSI biR @@ -200624,7 +200624,7 @@ qjn wxb wkw slk -giV +mOA nlN nlN nlN @@ -200635,10 +200635,10 @@ nlN nlN nlN lcv -nvT +erg qMV -lKp -gFz +uxU +xvP lcv ybG aal @@ -200865,7 +200865,7 @@ vwN dEt mPw uZF -svu +rux uZF iOD biR @@ -200881,16 +200881,16 @@ tPm tPm fDR nlN -giV -giV +mOA +mOA nlN pEp pEp pEp pEp -gwT -pPG -paN +aTG +ima +cdy lcv lcv lcv @@ -201122,7 +201122,7 @@ teB dEt mPw uZF -svu +rux uZF noO jiD @@ -201134,7 +201134,7 @@ nDa lNh nno tPm -gSu +oSr tPm fDR nlN @@ -201145,10 +201145,10 @@ vJs pEp pEp pEp -xQq +ucz qbw qbw -geB +msT nlN qza meU @@ -201365,10 +201365,10 @@ oyh oyh dEt dEt -xOC +dOb hjP jRW -nBO +wsk fIM fXq dEt @@ -201379,7 +201379,7 @@ fOK dEt mPw uZF -svu +rux uZF uZF uZF @@ -201391,7 +201391,7 @@ ffv oia sus tPm -gSu +oSr tPm rGL qjn @@ -201622,9 +201622,9 @@ oyh oyh dEt dEt -ioZ -uzB -fpt +jhn +dwI +cgs dEt tfE fXq @@ -201636,9 +201636,9 @@ fOK dEt mPw uZF -svu -svu -svu +rux +rux +rux uZF cfH hOc @@ -201648,18 +201648,18 @@ aVq xsE ikM tPm -gSu +oSr tPm xui nlN -uWm -iSu +qSL +gOL nlN qDS pEp pEp pEp -xQq +ucz xui qbw qbw @@ -201895,7 +201895,7 @@ mPw uZF uZF uZF -svu +rux uZF cfH aVq @@ -201905,18 +201905,18 @@ wmw bMG rIl tPm -gSu +oSr tPm xui nlN -bvC -uuz +qyw +xJn nlN ylj pEp pEp pEp -yhj +aBz xui nlN nlN @@ -202152,7 +202152,7 @@ mPw imI wWk uZF -svu +rux uZF cfH btU @@ -202162,7 +202162,7 @@ xCl bou aVE tPm -gSu +oSr tPm xui nlN @@ -202409,7 +202409,7 @@ mPw imI aBx uZF -svu +rux uZF tPm tPm @@ -202419,7 +202419,7 @@ tPm tPm tPm tPm -gSu +oSr tPm xui xui @@ -202666,22 +202666,22 @@ mPw imI oWS uZF -svu -gSu -gSu -gSu -gSu -gSu -gSu -gSu -gSu -gSu -gSu +rux +oSr +oSr +oSr +oSr +oSr +oSr +oSr +oSr +oSr +oSr tPm uGL giX xui -wOd +bLc xui oDa xui @@ -202917,7 +202917,7 @@ qKl tzB hZJ ivQ -qAn +jWw ajb mPw dEt @@ -203174,17 +203174,17 @@ ajb tzB aSB xRJ -paA +ftf ajb mPw -svy -nvw -fhA -fAw -fBO -dNI -uAU -gYe +jOx +peT +jWI +crh +pNr +mLG +pis +wrE tPm meU hLB @@ -203192,7 +203192,7 @@ aiw hLB hjx xui -acE +dme giX xui oDa @@ -203434,14 +203434,14 @@ hZJ mcm dEt mPw -eNa -nvw -fhA -oTQ -opd -oTQ -mUF -kVY +jeg +peT +jWI +bfC +fES +bfC +oYo +fSY tPm jzp hLB @@ -203457,8 +203457,8 @@ nlN hsh nlN nlN -cEj -kPm +kyp +dlz nlN xui hxF @@ -203691,14 +203691,14 @@ rrr ghI uNZ mPw -hCv -nvw -wHV -rHA -wyC -isQ -gJy -oXH +fhq +peT +igL +ofX +plr +lTe +kzR +oDT tPm nlN hjx @@ -203948,14 +203948,14 @@ ptc ghI uNZ mPw -kLF -nvw -rfD -ojK -esH -maq -aGE -qtj +wAv +peT +wmy +brR +xFQ +rGV +uIH +lxA nlN nlN xui @@ -204217,11 +204217,11 @@ nlN nlN giX nRv -geB -qqC -eOf -wOd -hXu +msT +qTy +oWk +bLc +vuU xui nlN hzR @@ -204469,7 +204469,7 @@ sGZ dEt xui xui -qqC +qTy nlN nlN nlN @@ -204715,7 +204715,7 @@ rNm dDP guZ hZJ -ezI +pSB hZJ rrr mPw @@ -204725,16 +204725,16 @@ dJq dJq hss xui -hXu -nmq +vuU +swv nlN -ahh -qqj -sIZ +txh +raA +xfM nlN -hXu +vuU giX -pnk +wqO qbw xui nlN @@ -204974,8 +204974,8 @@ dEt dEt dEt dEt -qeb -qeb +grw +grw dEt mnj muP @@ -205256,12 +205256,12 @@ mbe mbe rcp dqJ -oin +tGz hzz cCq lQM cCq -vKs +fnZ cCq hvY cCq @@ -205478,8 +205478,8 @@ oyh dEt dEt rxe -uEK -wGq +vMw +cJz rrr hZJ dEt @@ -205516,10 +205516,10 @@ rkd mFv xRo cCq -iDm -xrj -aHf -bIm +wiO +pjo +iRL +ozC hMs qCt pUV @@ -205739,8 +205739,8 @@ xSn mzC haS jDJ -xTa -bfk +ccv +uEB lZa pMx lNS @@ -205773,10 +205773,10 @@ nZq bbL xRo cCq -lbr -vdn -cWR -ioQ +iCo +ctC +sqV +qLQ aVr img gYb @@ -205996,7 +205996,7 @@ axG ajb gxf eeC -fzR +wQx rrr hZJ fQY @@ -206030,9 +206030,9 @@ nld qbw sut cCq -pxK -gmQ -uxt +rjJ +qNp +oSJ cCq hvY cCq @@ -207297,11 +207297,11 @@ oyh oyh tUT tUT -nAv -jkv -wYl -dXR -hRc +xWL +xMd +wYx +wMP +cQx tUT tUT eYj @@ -207554,12 +207554,12 @@ oyh oyh tUT rlN -qRS -dfd -inK -oOr -oFN -xMG +qwd +ayp +liv +rAf +fpf +iBH tUT fPW eYj @@ -207811,11 +207811,11 @@ oyh oyh tUT tUT -aqU -srq -pRO -nMV -vSS +dzC +fER +aZH +pct +ozo tUT tUT itT @@ -238641,7 +238641,7 @@ saG saG eAE nxm -vrX +eSo aic fOS icY @@ -238663,7 +238663,7 @@ toH toH toH nST -hEo +iMq gwL sJU gwL @@ -238923,7 +238923,7 @@ joE oQS niP bne -rfI +nwN gwL gwL ucA @@ -239155,7 +239155,7 @@ saG nNM gAt eAE -vrX +eSo wRJ wRJ wRJ @@ -239179,8 +239179,8 @@ gwL lsm oQS fIg -hEo -gVx +iMq +ayK gwL gwL ucA @@ -239433,7 +239433,7 @@ teN sVh kkr gwL -oRB +uZQ cQr gwL gwL @@ -239682,7 +239682,7 @@ iQp oZx oZx oZx -sfS +iGC ivu oon oon @@ -239690,10 +239690,10 @@ sKN wFY qIS gwL -fqE +frP oQS lYL -jFE +chf rSY uhK uhK @@ -239947,11 +239947,11 @@ hQA mlX hQX gwL -fmF +deK oQS gwL -fiX -fYM +fpY +ygZ gwL gwL ucA @@ -245590,7 +245590,7 @@ rMo lok gaA whR -nHB +wdY vEw dFd awt @@ -245827,10 +245827,10 @@ sCu gUX vaQ wUS -dzt +ayP iMz uHe -qMB +jOP ccH dxB wRJ @@ -246087,7 +246087,7 @@ uWf dke ycg uHe -gKQ +kBf ccH klw wRJ @@ -247912,7 +247912,7 @@ qBx nIv sVU jUf -emy +sVG qBx gyr fAz @@ -248691,7 +248691,7 @@ ftp pzi eMj diA -iRu +lmi dDn pmQ pDK @@ -248926,10 +248926,10 @@ ffZ rPw liQ kqW -ktz +skL wfI gMf -eJF +lyn liQ fjo vEw @@ -249463,9 +249463,9 @@ qBx qBx tGn fZC -sEP -bxH -cwl +iQR +oll +jqR tGn mUA mUA @@ -249689,7 +249689,7 @@ cQg rWT byY dzQ -gGu +oiK wIN iHm oiH @@ -249719,10 +249719,10 @@ bLX nKa oLG tGn -gNS -cwl +qzj +jqR fhx -cwl +jqR tGn npO bGc @@ -249946,7 +249946,7 @@ gFb rWT uhF vhL -gGu +oiK wIN iHm bqI @@ -249956,7 +249956,7 @@ iHm iHm iHm hnC -eHG +fFs xjh liQ vzO @@ -249976,9 +249976,9 @@ tuH smi dLV tGn -jFQ -jFQ -dEN +mxR +mxR +pEy tGn tGn tGn @@ -250203,7 +250203,7 @@ bRH rWT sNd evW -kkt +nHZ wIN iHm fNq @@ -250234,7 +250234,7 @@ smi xpR tGn tGn -nsw +iaX tGn tGn aoM @@ -250242,8 +250242,8 @@ tGn xIF tGn ewY -ppZ -twS +wVa +rum tGn tGn ucA @@ -250491,7 +250491,7 @@ rhu aPH oZE lxK -lYD +nOv lxK tGn tGn @@ -250500,7 +250500,7 @@ pSl uiR qFr nDk -uPY +sXx tGn tGn ucA @@ -250749,13 +250749,13 @@ uZc tGn pSl pSl -khP +gPX pSl pSl pSl pSl tGn -rIt +tBu nDk tLF tGn @@ -250997,12 +250997,12 @@ jww jww jww eDe -ufs -ufs +nTz +nTz xGx xGx kak -ufs +nTz tGn rfT tGn @@ -251254,16 +251254,16 @@ jww tro jww eDe -ufs -ufs +nTz +nTz naR -sdO -caQ -lmW +kQx +urG +wbu uZc rtB uZc -pCH +sAt bQK dYf tGn @@ -251513,16 +251513,16 @@ jww eDe xGx diU -ufs +nTz xGx -dDu -ufs +jtS +nTz uZc -tCU -dTk +fvM +mNx rfx oZp -awo +vOP tGn tGn tGn @@ -251732,7 +251732,7 @@ ucA ucA ucA nAj -gyV +wQi fbq tJq wlb @@ -251771,15 +251771,15 @@ eDe uZc mxP wEE -xGB +tPX rtB uZc uZc sAz kLN dfp -qfT -ldq +dee +gXX tGn pSl fvb @@ -251989,7 +251989,7 @@ ucA ucA ucA nAj -gyV +wQi wEw tJq tuA @@ -252008,11 +252008,11 @@ qrd shB isU qrd -cbt -cbt -cbt -cbt -cbt +nPl +nPl +nPl +nPl +nPl qrd ybQ ybQ @@ -252020,21 +252020,21 @@ rAW bsN ybQ xLG -pbt -nZh -pbt -nZh -nZh +wcl +tBG +wcl +tBG +tBG uZc vAg uZc -kiS +glB rtB uZc -oua +hTy dYf -kil -qfT +kGO +dee oZp ykr tGn @@ -252289,9 +252289,9 @@ icF rtB uZc pjW -awo +vOP tzv -awo +vOP eSa tGn tGn @@ -252547,7 +252547,7 @@ cWM uZc uZc lvs -mbQ +vch lvs uZc tGn @@ -252761,7 +252761,7 @@ ucA ucA nAH nBg -saL +caS hMe gby hMX @@ -252799,14 +252799,14 @@ iuo mFF ncl iuo -cQY -nnc -awo -awo -awo +hoG +inC +vOP +vOP +vOP tzv -ufs -xiL +nTz +rnj tGn aoM cmr @@ -253018,7 +253018,7 @@ ucA ucA nAH nEC -cVt +gAB wdl nPn nPn @@ -253058,12 +253058,12 @@ iuo iuo iki tzv -ujs +wxo dYf -awo -vhP -awo -knh +vOP +hfA +vOP +gGg tGn tGn tGn @@ -253275,7 +253275,7 @@ ucA ucA nAH nNQ -eNK +poF wdl gme hWh @@ -253316,10 +253316,10 @@ iuo nDj ogo uZc -jwW +jWH ukT -gvn -mms +iQd +bvZ dYf tGn ajs @@ -253532,7 +253532,7 @@ ucA ucA nAH nBg -saL +caS feF vZV nPQ @@ -253542,7 +253542,7 @@ qrd qrd qrd qrd -sBY +gsW vTf gvO boP @@ -253571,19 +253571,19 @@ nUA dch iuo fzY -tua -rGC +aiJ +nwV ttJ -bhF +qhu eTQ -hyW -dgZ +beM +wfv kQN jPG ewA -jzH -pME -uiA +gRB +jKG +tbV cnq tGn tGn @@ -253827,20 +253827,20 @@ iuo iuo iuo iuo -ufs -kGr +nTz +wHk uZc -qsL -awo +rxu +vOP tzv dYf -gZm +nEN tGn hnZ ewA -kFY +iao aGQ -fIz +qEj kcl tGn tGn @@ -254080,24 +254080,24 @@ ykb xBl iuo nzw -xaA +sHh iim iuo -bJs -cbE +kdR +lBU sBx uZc uZc map kSZ -mYK +hEX uZc tGn nbi ewA -ccs -xsX -fur +gCO +qGG +ftz cnq tGn tGn @@ -254311,7 +254311,7 @@ sSB sSB qrd nQQ -vXG +iAE nWe kpS hwr @@ -254341,13 +254341,13 @@ ykZ ybK iuo wcC -noF +nZj hiu uZc -gYj -bsl +sMv +lfH nHF -uwG +jXS kVM tGn mwg @@ -254599,13 +254599,13 @@ uZc uZc uZc aJZ -qTH +lDU aXR -ubP -eiP -qsR -ufs -dqF +fXv +bcH +rZJ +nTz +iwO tGn tGn ueX @@ -254852,15 +254852,15 @@ xXY yaW peo uZc -oAv -qfn +dRq +hrK uZc -reD -tbu +fXn +mGI uZc keW vIZ -wkn +lbz obs hTK tGn @@ -255598,7 +255598,7 @@ qrd qrd qrd qrd -pnO +odw omK mnH eCg @@ -255855,7 +255855,7 @@ nDx qrd iOY qrd -heP +oLO dXo nVe lbM @@ -256641,7 +256641,7 @@ rfU rfU rfU rfU -jPs +eVS sbq jiL eLw @@ -257935,7 +257935,7 @@ tic lnA wuL xFg -xuR +rvL oNV eLw cmh @@ -258203,10 +258203,10 @@ npZ pOn piR alf -cMU +lXC fBt exN -wys +qbx fBt sfk sfk @@ -258459,11 +258459,11 @@ piR tnX pOn piR -msu +gMw iUQ -wSP -rcu -tji +svH +aIR +nYV kaq ldf rcO @@ -258681,7 +258681,7 @@ qrd gyG qrd xPv -lvW +fXG kGv omG qrd @@ -258716,11 +258716,11 @@ vjK qSg pOn piR -uAi +mlM mVj wkL -nMn -ykL +eQk +qVs wkL yli yli @@ -258937,11 +258937,11 @@ aVs qrd iOY qrd -tLQ +qOZ yhZ uoS -gpM -jGj +tMu +gks qrd sSB qrd @@ -258973,11 +258973,11 @@ vER pOn ojx piR -iwZ +dJa oTw myO -mLp -ioP +swX +btJ myO myO myO @@ -259195,7 +259195,7 @@ eud yfY qrd xWr -kYD +lYg iJl cvX fpk @@ -259230,7 +259230,7 @@ vZK abD tUc piR -msu +gMw mVj fBt exN @@ -259451,8 +259451,8 @@ dZf fLR lgv qrd -vVb -ivV +buO +evQ eEf hjr nnJ @@ -259473,7 +259473,7 @@ sbq jiL oKc wuL -tJY +oUF mdc hWS hSo @@ -259487,12 +259487,12 @@ cJi pOn ozS piR -uAi +mlM xWV -fAp -yhX -yhX -qzc +nzC +qGT +qGT +lIO ldf rcO rcO @@ -259744,11 +259744,11 @@ piR iga piR piR -wUy +erI mVj wkL -see -tgP +nEt +aYi wkL yli yli @@ -259994,18 +259994,18 @@ jNu lRY tMk pYU -cLL -jsW +uJP +gYB vrw piR pOn myO tto -anH -iSO +cYi +fAk myO -mLp -ioP +swX +btJ myO myO myO @@ -260251,15 +260251,15 @@ kkg xxy lvp fZX -yjq -ueL +hMZ +lho rKM piR mZh myO -vMm +wAK yaK -cZe +maH fBt czr nOY @@ -260508,19 +260508,19 @@ nzj lRY irT fZX -eNJ -axn +uvX +nkK aNB piR qSg uDH qRE -qQr +jzz qBP -jMu -iZG -rmT -lcF +erf +aoS +hGi +wbd ldf rcO rcO @@ -260765,18 +260765,18 @@ jXb lRY ngL fZX -wiH -ybr +wkg +vFx qFz piR gHN myO uXD -iYH +dAR dYB wkL -see -see +nEt +nEt wkL yli yli @@ -260999,7 +260999,7 @@ fpU fpU kKU iXQ -lhG +dzn fUi nLd iMN @@ -261256,7 +261256,7 @@ fpU fpU kKU biM -jNp +giz iED pNj mpp @@ -261291,7 +261291,7 @@ pOn hBp pOn lXM -nne +xpy hcT hcT piR @@ -261534,7 +261534,7 @@ xlE fDv uOW lRY -iua +fFW gJm lRY lRY @@ -262058,7 +262058,7 @@ pnf jRi dBw jNg -hyx +fol kdK wza pOn @@ -262285,7 +262285,7 @@ ePH wjm tXV iMN -eIz +ulg iMN iMN nGj @@ -262316,8 +262316,8 @@ foL leY piR awU -get -fHE +tWK +oCN piR mom hcT @@ -262574,10 +262574,10 @@ prQ piR biO piR -qeX +qYj cvf pOn -rIY +sHM lRh piR piR @@ -262827,7 +262827,7 @@ wHP wmX mmi yll -dYn +nNF piR piR piR @@ -263087,8 +263087,8 @@ yll qmb til bAe -gSS -mPZ +nmu +lrK piR mom hcT @@ -263344,7 +263344,7 @@ kpe hJg piR bBS -wwi +gzi pvE piR mom @@ -263600,8 +263600,8 @@ yll qNW dER piR -xRs -bKR +vgY +aij mHo piR mom @@ -264107,7 +264107,7 @@ vnY vGi wAz frW -tBl +yaO xDm frW yll @@ -264119,8 +264119,8 @@ pOn pOn pOn pOn -uKD -rTv +jBy +nQs piR piR ucA @@ -264596,13 +264596,13 @@ stx dFL yiK kRw -qQi +jzu iAg lgw -swM +csQ kRw -axP -hdg +xQj +ffP kRw fKb uVL @@ -264630,11 +264630,11 @@ ljL abD piR piR -szl -uwl -kxs +mSr +jIL +iBm wTU -szl +mSr pen pen ucA @@ -264854,12 +264854,12 @@ uCP vCy kRw gJM -kWa -wQX +eSr +gAz ekO kRw -ihn -rQf +nnB +oTJ kRw mMm faS @@ -264885,13 +264885,13 @@ xFl dER piR pOn -gSS +nmu piR -kZG -kZG -kZG -bbs -kZG +uRv +uRv +uRv +buX +uRv pen pen ucA @@ -265111,12 +265111,12 @@ uCP pyt kRw iGo -irh +wYk bbb -wWo +mwN kRw -kIu -rQf +jPT +oTJ kRw dtI xCJ @@ -265142,13 +265142,13 @@ ctd dQn piR pOn -vzx -gGx -rnl -lik -ffV +puh +mPr +oDw +lVG +rEI aDN -wwp +guD pen pen ucA @@ -265399,13 +265399,13 @@ piR aMJ piR pOn -gSS +nmu piR -gRI +dow gcf hXI -gxd -aWj +geP +eDV eqk eqk ucA @@ -265624,13 +265624,13 @@ kRw kRw kRw kRw -pqY -fdX +jQn +wZb ryi -liL +wNQ kRw -gqF -qKG +pKv +vMr kRw nRo asS @@ -265654,15 +265654,15 @@ xNL gvh oTK dVD -sOD +xHQ pOn mVR piR -xHf +hkv cBq -rsz -mnY -uhU +seU +tOp +onx pen pen ucA @@ -265879,15 +265879,15 @@ cIM cIM cIM cIM -lVq +mIt kRw -pJq -pwA +ciU +uAL rlX -amf +lwD kRw -abJ -sBE +hKf +xHl kRw upo wvw @@ -265910,16 +265910,16 @@ ugW tjq ycu piR -bGh -sOD +laN +xHQ pOn jAU piR tgA -cFK -gaT +sZg +mSo vuI -rtH +gae pen pen ucA @@ -266136,15 +266136,15 @@ snd snd snd cIM -eNi +qls pAn efa xJM hCJ -vXH +tgF kRw -sBE -iMM +xHl +akS kRw cpa kXF @@ -266170,12 +266170,12 @@ piR piR piR pOn -gSS +nmu piR pen pen pen -aTj +xBk pen pen pen @@ -266390,7 +266390,7 @@ snd qPS cCk qjq -eJc +rLY jOT nHf cIM @@ -266429,11 +266429,11 @@ piR bFf piR piR -lCO -rFg -rFg -gdS -gAP +rCY +htf +htf +tcz +oem pen pen ucA @@ -266647,7 +266647,7 @@ snd wVu pUC lrM -qON +hUB snd tat kYv @@ -266686,11 +266686,11 @@ sKI pOn ebn piR -rFg -lxI -udy +htf +qZg +ggb lOh -oiJ +fes pen pen ucA @@ -266903,8 +266903,8 @@ rCv snd iWf hci -oyO -uPA +ixj +wNO snd tat kYv @@ -266941,13 +266941,13 @@ piR piR piR kEe -mPZ +lrK piR -tHH +blk cky -vBd -ooV -vkz +rwx +ldJ +rba eqk eqk ucA @@ -267198,13 +267198,13 @@ pOn pOn bFf xHR -gSS +nmu piR -nFi -rFg -hHn -kWM -tHH +spX +htf +cZg +rrb +blk pen pen ucA @@ -267424,9 +267424,9 @@ kRw kRw kRw kRw -toK +eTE cIM -eiJ +fZa kRw kRw kRw @@ -267443,7 +267443,7 @@ dzR piR piR piR -lxZ +iuh qdX ick piR @@ -267681,12 +267681,12 @@ kRw kRw kRw kRw -pZL +bAz cIM -mSa +ogk kRw -jOX -hcR +keQ +vhp aKx cfH qhp @@ -267700,12 +267700,12 @@ piR piR lCs piR -eXB -pXh -qcZ +ihY +mhA +sKq piR rsW -pvm +bPs piR piR piR @@ -267940,9 +267940,9 @@ kRw kRw aSK cIM -pFI +nkU kRw -nyv +lAR gmH aKx aKx @@ -267954,14 +267954,14 @@ tnt cIM pmB piR -kuA -pwC +xme +aud piR piR -rne +xSz piR piR -hGL +sZs ivE piR piR @@ -268212,13 +268212,13 @@ cIM jNt piR pDd -vlX -vlX -llm -wDS -huR -lYX -lYX +uPk +uPk +jfA +psn +vwg +prB +prB piR piR piR @@ -272833,10 +272833,10 @@ ucA ucA tUT tUT -qRS -fwF -frE -vba +qwd +lWu +mHy +iKe tUT oyh oyh @@ -273090,10 +273090,10 @@ ucA ucA tUT rlN -qRS -kGy -inK -oOr +qwd +hVO +liv +rAf tUT oyh oyh @@ -273347,10 +273347,10 @@ ucA ucA tUT tUT -nZJ -jps -ydj -pzH +lyQ +wef +tdu +hIn tUT oyh oyh @@ -304175,10 +304175,10 @@ ucA xHe xHe xHe -hIp +kIC xHe beE -ngf +aUb pCS mTs qox @@ -304198,7 +304198,7 @@ uIx nDu nDu nDu -bkY +wfC aDQ sNa sfw @@ -304431,8 +304431,8 @@ ucA ucA xHe xHe -xJo -uxw +siU +xya xHe qhQ dgJ @@ -304455,9 +304455,9 @@ uIx nDu mTi eZD -sUZ -mpK -qtz +pFB +bMq +pKm nsh jcf voT @@ -304688,12 +304688,12 @@ ucA ucA xHe xHe -yjN -uxw +ijr +xya aLb eGK -bNb -gEB +uFn +nqP cmw cHz aNs @@ -304709,13 +304709,13 @@ rrX nss oGo uIx -sVi -wJq -wJq -ucS -hGy -uxW -wVr +szo +vMK +vMK +pSg +eVn +nyW +sgg wsj voT voT @@ -304948,10 +304948,10 @@ xHe xHe xHe xHe -rNL -bNb -yiI -uxw +voq +uFn +uCX +xya pkm aNs qFW @@ -304966,13 +304966,13 @@ rrX iBb gUr uIx -sow -kMb -hDK +vfj +npd +doj tJL aFY okt -dLL +daz nYo voT voT @@ -305202,14 +305202,14 @@ ucA ucA xHe xHe -ioM -uxw +lGl +xya xjQ -iqD +sCP euv xJp -uxw -xjX +xya +sgZ aNs kWD sZO @@ -305223,11 +305223,11 @@ hwM ukK sXl uIx -oad -uxW -rao -qZq -qZq +bLO +nyW +iyO +hBh +hBh dAi fBY gjn @@ -305459,14 +305459,14 @@ ucA ucA xHe xHe -lRc -lVV +sqI +bVE uww hdL mUq mwr eGK -onE +tzG aNs szY wFT @@ -305483,7 +305483,7 @@ uIx wHe lvm vSG -mpK +bMq key nsh nsh @@ -305973,7 +305973,7 @@ ucA ucA xHe xHe -jnv +kEV dzY lJp lJp @@ -306000,8 +306000,8 @@ rhJ rhJ rhJ bxc -rao -iES +iyO +xWQ voT voT ucA @@ -306230,7 +306230,7 @@ ucA ucA xHe xHe -gBs +wde xHe sHq aNs @@ -306241,7 +306241,7 @@ aNs aNs aNs sHq -gGB +ain aNs sRO rzu @@ -306257,8 +306257,8 @@ nDu nDu nDu xSr -rao -yke +iyO +gTj voT voT ucA @@ -306487,7 +306487,7 @@ ucA ucA xHe xHe -vXM +ruD rPA abP aNs @@ -306514,8 +306514,8 @@ oqx mpZ mpZ rSK -rao -hVk +iyO +uzD voT voT ucA @@ -307539,11 +307539,11 @@ vhV omr nfU voT -epk +cdu ndo wAH -pPY -faL +vwm +baj voT jvf vNa @@ -307770,14 +307770,14 @@ xHe xHe lJp lJp -hTr +evv aNs sTG qlp qlp oKq mFS -eBn +mxb dWu wfx vLW @@ -307796,11 +307796,11 @@ hKg raq voT voT -rao +iyO ndo dQs -rao -rao +iyO +iyO iiW tje laZ @@ -308024,7 +308024,7 @@ xHe xHe xHe xHe -tWo +gIx lJp aNs aNs @@ -308275,11 +308275,11 @@ pRs xHe xHe xHe -tSf +lDv xHe eGK -uxw -kCi +xya +tRl xHe xHe lJp @@ -308309,10 +308309,10 @@ bGP bcD mtW uIx -qWm -yke -fDM -rao +nFA +gTj +aQO +iyO wAH ndo voT @@ -308530,13 +308530,13 @@ ucA ucA pRs aDn -uxw +xya krF -uxw +xya xHe jbc -nnj -nnj +lgT +lgT hto hto lJp @@ -308566,9 +308566,9 @@ sFa bcD sFa uIx -nIk -rao -mel +eYC +iyO +gTx okt wAH ndo @@ -308795,7 +308795,7 @@ hto hto hto hto -uxw +xya lJp aNs glw @@ -308832,9 +308832,9 @@ uIx voT rIU voT -vbT -ehr -wOy +onN +eyr +fYI voT qlh nDu @@ -309049,10 +309049,10 @@ kqp dIQ dIQ hto -uxw +xya jBa xHe -dGp +qcv lJp aNs glw @@ -309089,9 +309089,9 @@ uIx aaO xFo lBG -gmg +gRd tIa -wkF +hAt dad qlh nDu @@ -309306,8 +309306,8 @@ qox qox qox mhY -awH -oBL +iGE +vzU xHe jgz lJp @@ -309343,12 +309343,12 @@ yfb xMF kBi uIx -rao -rao -rao +iyO +iyO +iyO nry eiO -wkF +hAt voT qyi nDu @@ -309563,10 +309563,10 @@ exe xHe exe mhY -uxw -epQ +xya +lMZ xHe -vAB +jdP lJp aNs glw @@ -309600,12 +309600,12 @@ wQR xMF xyA uIx -uwP -uwP -hSh +mYQ +mYQ +wXw nAE sIE -cQC +dhR voT vZq mNY @@ -309823,7 +309823,7 @@ efY qkZ qkZ jFO -jDD +hru lJp aNs glw @@ -310077,8 +310077,8 @@ bRh bRh rQx uEY -uxw -uxw +xya +xya aSU qkZ prD @@ -310120,9 +310120,9 @@ cub wTg vEa rxZ -mwR -pme -iho +pkH +gdp +oAP fXs vlb fXs @@ -310376,10 +310376,10 @@ uzZ egJ ehX vEa -iZA -fTa -fTa -aOB +crX +swg +swg +vsE fXs dek dek @@ -310591,17 +310591,17 @@ tQO mXH qyH mXH -xwP +lRL nmc xJx -rov +wXZ bvM fUk rXJ gDy -xXm -eRZ -uIr +rxy +fsP +jKd nPE tKs xLV @@ -310633,10 +310633,10 @@ qkU pHc cRJ vEa -vok -fTa -wtL -lew +jBH +swg +nmn +mGo fXs dKk qEh @@ -310851,7 +310851,7 @@ mKO rDL fPd jha -rov +wXZ xVV gsy uwf @@ -310890,10 +310890,10 @@ vEa vEa vEa vEa -qCM -fTa -bMW -sbn +joq +swg +vaO +lSp fXs nGW dek @@ -311116,9 +311116,9 @@ nPE nPE pDq aex -tZJ -fkv -wHr +bCN +aja +imB jCA eXT mpM @@ -311144,8 +311144,8 @@ wvq rJI uyI vEa -owb -owb +urM +urM fXs fXs fXs @@ -311372,10 +311372,10 @@ ddH ddH nPE pDq -vfi -lmb -lak -eeN +tzn +mze +lzT +qMg jCA pbe lSY @@ -311401,11 +311401,11 @@ tPx rJI idH vEa -owb +urM fXs fXs aeL -wtL +nmn bAG bAG bAG @@ -311613,7 +311613,7 @@ ucA ucA ucA ucA -mKp +cmI crp crp dWz @@ -311630,9 +311630,9 @@ jjT nPE pDq iea -jPp -bwA -gRA +drN +hqO +svA jCA jZm ulW @@ -311658,13 +311658,13 @@ efb qsP llT vEa -owb +urM fXs -dIh -wtL -wtL +wnw +nmn +nmn bAG -wtL +nmn fXs fXs sdh @@ -311870,7 +311870,7 @@ ucA ucA ucA ucA -mym +kTD vPP rrs bYl @@ -311902,7 +311902,7 @@ uPX gRe raq oAe -pZF +qrZ scI jwj aYl @@ -311915,15 +311915,15 @@ uqc uqc uqc vEa -owb +urM fXs fRx msj -ayU +sdR bAG bAG fXs -tJE +xSV biC fXs fXs @@ -312172,7 +312172,7 @@ pIj nYN szx vEa -owb +urM vEa vEa vEa @@ -312180,8 +312180,8 @@ vEa vEa bAG fXs -vFS -tde +qrH +aqF fXs fXs ucA @@ -312385,7 +312385,7 @@ ucA ucA ucA lYx -lOF +fIS koC oOA tyR @@ -312398,7 +312398,7 @@ auO fNt hsT lEs -dIl +iiL nPE nPE vZi @@ -312429,11 +312429,11 @@ qFL gYI rPK vEa -owb -owb -owb -owb -owb +urM +urM +urM +urM +urM vEa bAG fXs @@ -312655,7 +312655,7 @@ pNa pGb nPE pDq -cSk +gUU nPE wIz jLt @@ -312690,12 +312690,12 @@ vEa vEa vEa vEa -owb +urM vEa bAG bAG bAG -lCg +onJ fXs fXs ucA @@ -312947,12 +312947,12 @@ piE gDN pke vEa -owb +urM vEa vEa -wtL +nmn bAG -wtL +nmn fXs fXs ucA @@ -313174,7 +313174,7 @@ nPE nCP hOF tJN -pFu +wpv rIb xAk qyD @@ -313204,10 +313204,10 @@ biy nah jLm vEa -owb -owb +urM +urM vEa -eEN +jQx bAG tqr fXs @@ -313443,8 +313443,8 @@ euu cKO kTm bDL -dHD -dHD +tgn +tgn bDL bDL dTY @@ -313683,12 +313683,12 @@ gDy gDy gDy gDy -cSk +gUU nPE hKt nWP xvr -mRx +qtl nTo hns bHL @@ -313937,7 +313937,7 @@ nPE jNM xZu gDy -dvc +vxw eMg gDy gDy @@ -313973,7 +313973,7 @@ apg sWm kHO iAq -cOw +tgR iAq cBx vEa @@ -314184,7 +314184,7 @@ xuh xuh xuh hNj -keh +sZW lVU aWw oSQ @@ -314194,9 +314194,9 @@ nPE pDq gDy gDy -mif -pcq -lpe +eTr +sir +wud gDy sCz nPE @@ -314450,10 +314450,10 @@ twR nPE pDq gAd -iPs -rfM -lXj -vpn +cTo +ovX +hUw +qoT gDy uDE nPE @@ -314707,10 +314707,10 @@ nQj nPE pDq gDy -qFM -bWn -neJ -vqT +nnX +tGl +qpR +eTn gDy uDE nPE @@ -314718,7 +314718,7 @@ hMm ipn pYl geD -tDO +bmb mKs lif jmI @@ -314966,7 +314966,7 @@ pDq gDy gDy gDy -jJI +wsQ gDy gDy mYF @@ -314981,7 +314981,7 @@ liQ liQ liQ liQ -sZF +tkD uPX pIG buI @@ -315006,7 +315006,7 @@ vEa jbV jbV jbV -eNj +bVN hFK jbV fXs @@ -315731,7 +315731,7 @@ vnI mzk vnI lln -tVc +wzF bpF mbk gDy @@ -315774,12 +315774,12 @@ ebz jpS lku vEa -owb -owb -owb +urM +urM +urM fXs mgx -kHx +ozH fXs fXs ucA @@ -315992,9 +315992,9 @@ gDy bpF vVZ gDy -szn -wLj -aWV +jJd +vBp +tgN gDy tlZ oaU @@ -316033,10 +316033,10 @@ dnU fXs vEa vEa -owb +urM fXs xGh -vPu +rvi fXs fXs ucA @@ -316247,11 +316247,11 @@ sbU tAW gDy lIS -uIr +jKd gqC rAy -hGB -fTu +lhY +rzG gDy fZI oaU @@ -316290,7 +316290,7 @@ mnG fDI wcf vEa -owb +urM fXs mgx bMP @@ -316504,11 +316504,11 @@ bew jCM gDy bpF -uIr +jKd gDy -aTi -oZY -gts +npY +ddL +qmx gDy cek hKS @@ -316547,7 +316547,7 @@ toy pii dvJ vEa -owb +urM fXs jjh fXs @@ -316804,7 +316804,7 @@ sQj otJ jye vEa -owb +urM fXs tPS sOU @@ -317021,9 +317021,9 @@ bpF bpF bpF gDy -heg -iEa -xhU +nSu +wrA +ldP gDy uDE gDy @@ -317058,7 +317058,7 @@ fQA oTG dnU bVj -pJj +aps duZ vEa fXs @@ -317278,9 +317278,9 @@ gDy gDy tPK gDy -aZd -rhN -eUZ +juw +bhT +tnu gDy uDE gDy @@ -317314,9 +317314,9 @@ aEh fQA gJA dnU -sWo -sWo -pnw +bWQ +bWQ +rNl ycM sOU sOU @@ -317525,13 +317525,13 @@ ucA ucA ucA otM -sOB -dBb -nTU -pEs -jid -goe -goe +kPH +kAD +nfE +fAH +urH +hlr +hlr gDy gAd gDy @@ -317571,9 +317571,9 @@ fQA fQA sXp dnU -sWo +bWQ wyv -sWo +bWQ ycM sOU sOU @@ -317782,18 +317782,18 @@ ucA ucA ucA otM -sOB -bjg -emZ -rKG -kFF -xrq -psc +kPH +wkc +xWp +sqc +yla +kPP +lwK dlW kDq dlW -xrY -xdm +tNN +qeO wLy vJf rVI @@ -317828,9 +317828,9 @@ xYz cfD vWw vWw -fwC +tGF cWK -sWo +bWQ ycM cTs sOU @@ -318039,22 +318039,22 @@ ucA ucA ucA otM -sOB -nNk -nSC -nSC -nSC -mGy -oiY +kPH +pAW +tmK +tmK +tmK +ozD +kmS daY pOQ dLk -tGW -ell +pgP +gEH bRl -jzB -giQ -onc +nSr +jaL +mjL txa wBF rVk @@ -318085,7 +318085,7 @@ mqB lOp rBU qjr -sWo +bWQ jJC wyv ycM @@ -318296,22 +318296,22 @@ ucA ucA ucA otM -sOB -nNk -dtv -dtv -tby -cjB -bRt +kPH +pAW +ehY +ehY +tqd +lbD +sKP daY iCU dLk -xbF +hDD nTB moq chP -cgw -lad +vbW +wku txa twB yfx @@ -318342,8 +318342,8 @@ nhm qQG puQ qjr -sWo -jvz +bWQ +gAG wyv ycM bGM @@ -318553,22 +318553,22 @@ ucA ucA ucA otM -sOB -cVb -uHv -qxQ -tby -sLe -psc +kPH +euj +ayZ +hQR +tqd +mCX +lwK daY iCU dLk -xdm -xdm +qeO +qeO moq moq chP -lad +wku txa xjo xHv @@ -318810,22 +318810,22 @@ ucA ucA ucA otM -sOB -wir -tby -tby -tby -sLe -psc +kPH +kIa +tqd +tqd +tqd +mCX +lwK daY iCU dLk -xdm +qeO chP moq -sDE +oLU moq -lad +wku txa lOg uiS @@ -318858,7 +318858,7 @@ lXm kdh cSq iXF -sPs +lpM ycM dmR mCN @@ -319067,22 +319067,22 @@ ucA ucA ucA otM -sOB -wir -nSC -nSC -nSC -luZ -bRt +kPH +kIa +tmK +tmK +tmK +foN +sKP qGf dzB fZS -vqS +oGI wFb -bjT -kXK -syE -clT +nEu +jRU +jDI +llK txa wUK tsi @@ -319115,11 +319115,11 @@ mqB lOp ozE iXF -sPs +lpM ycM -bGy +cDN nvt -qzk +mbP gWN ncB ncB @@ -319324,22 +319324,22 @@ ucA ucA ucA otM -sOB -wir -nSC -dtv -dtv -sLe -psc +kPH +kIa +tmK +ehY +ehY +mCX +lwK daY iCU dLk -xdm +qeO chP moq -mIQ +kyT moq -nqI +mhI txa lIr fQv @@ -319372,11 +319372,11 @@ qqE eLg oMn uXo -sPs +lpM orf sOU sOU -fGC +sLn gWN ncB ncB @@ -319581,22 +319581,22 @@ ucA ucA ucA otM -sOB -nNk -nSC -dtv -fEr -sLe -psc +kPH +pAW +tmK +ehY +vTd +mCX +lwK daY iCU dLk -tQl -xdm +iQJ +qeO moq moq chP -lad +wku txa dWg xkR @@ -319629,11 +319629,11 @@ syd qnv msW iXF -sPs +lpM ycM -nDE -aDq -lWm +dwA +gWa +kjM gWN ncB ncB @@ -319838,22 +319838,22 @@ ucA ucA ucA otM -sOB -mvs -gid -nSC -nSC -sLe -bRt +kPH +oFn +eaz +tmK +tmK +mCX +sKP daY iCU dLk -xbF +hDD nTB moq chP -xdm -xvO +qeO +dYt txa bTK qEt @@ -319886,7 +319886,7 @@ hdK gMo jOc iXF -sPs +lpM ycM noA noA @@ -320095,19 +320095,19 @@ ucA ucA qXo otM -sOB -dKf -nSC -nSC -nSC -mGy -lLm +kPH +dhg +tmK +tmK +tmK +ozD +upi daY klC dLk -tjJ -qfE -xdm +wyO +tZe +qeO txw bRl nKA @@ -320352,19 +320352,19 @@ ucA ucA ucA otM -sOB -ckU -jKi -rdC -cIE -eov -vXn +kPH +uXI +wai +lVc +bux +anE +jwr dlW xcT ntn -lad -xvO -sLY +wku +dYt +mff sHQ uOo aUH @@ -320393,7 +320393,7 @@ fRv sHY eoL hSJ -sxM +nZx mXY vxL qFI @@ -320609,13 +320609,13 @@ ucA ucA ucA otM -sOB -dBb -hKx -mhh -csF -csF -psc +kPH +kAD +oPO +wKB +uli +uli +lwK dlW kBF dlW @@ -320652,17 +320652,17 @@ dDR iTd oPA wHC -hfd +fWv qFI iPH wuJ -mjj +kqh ycM esB -wIe +uVU ncB -mJc -aWZ +kOK +rFT ncB ncB ucA @@ -320876,10 +320876,10 @@ mMk dlW lsC dlW -whU -vju -buC -jKh +pbV +aBM +uGK +kwT dlW lks txa @@ -320909,7 +320909,7 @@ bsI oOi dOD dVq -kNd +eYW qFI aLu uOL @@ -320919,7 +320919,7 @@ esB esB esB ncB -sBy +wVI ncB ncB ucA @@ -321124,19 +321124,19 @@ ucA ucA dlW rIo -mfQ -avf -aBR -xdy +rNy +jGG +hML +tAP rIo oGD iCU oGD dlW -oNn -pMZ -enE -uOe +lTF +okA +vlr +djg dlW dlW dlW @@ -321382,13 +321382,13 @@ ucA dlW rIo rIo -sua -sOB -hJG +wAy +kPH +pdn cVo oGD -rio -xPX +phg +pqb dlW dlW dlW @@ -321639,9 +321639,9 @@ ucA ucA dlW rIo -lPl -sGN -jqh +yhT +gSF +exF rIo lsC oGD @@ -322689,7 +322689,7 @@ nTv tme ohm upx -sfR +xIR dJF bVy uVr @@ -322934,9 +322934,9 @@ sxo sxo sxo dlW -taM -soZ -vXc +ukk +dkY +mTJ dlW dlW dlW @@ -323191,7 +323191,7 @@ viA qcS qPt dlW -gTR +jXd oGD oGD oGD @@ -323450,7 +323450,7 @@ xiA dlW omA xxS -vHX +eFw sXR oGD rsL @@ -323713,10 +323713,10 @@ oGD oGD oGD oGD -thU -uIM -fMB -qAw +xsY +sOl +mLL +ekR dlW ipQ bVy @@ -323970,10 +323970,10 @@ dlW dlW dlW oGD -uTk -eWW -pKD -fuy +azE +ciD +mRp +kIt dlW rIK bVy @@ -324483,7 +324483,7 @@ eYN cVX ggW dlW -sOB +kPH dlW dlW tEc @@ -324740,7 +324740,7 @@ rNo fwV ulu dlW -lgz +wUC dlW kON qnc @@ -324763,7 +324763,7 @@ itu jnM qkP jVK -opP +puK ozO ozO tZX @@ -324991,7 +324991,7 @@ deM act rNo gZn -rdu +wKt vQt rNo mBP @@ -325020,7 +325020,7 @@ dvT jwi tOn jVK -gqI +cQh bqs cSQ hiN @@ -325277,7 +325277,7 @@ jMn sTr dji jVK -ipv +aKO ozO mYp nAb @@ -325784,11 +325784,11 @@ eYj oyh fkA fkA -wmD +uhD fkA kUZ wcL -oqQ +iRG vQo jVK lum @@ -326010,7 +326010,7 @@ vVT mTG deM kmc -iUE +tTr xVF kWs deM @@ -326041,10 +326041,10 @@ eYj eYj fkA fkA -qgw +gEi fkA dkP -oqQ +iRG duI iMc jVK @@ -328582,9 +328582,9 @@ fVV fVV fVV ulj -wJM +oJZ gbZ -ahv +oMk iWQ xeQ fVV @@ -329116,7 +329116,7 @@ oyh oyh hWr ojl -mYg +rWx kKP wXk uQA @@ -329375,7 +329375,7 @@ oyh nbP tIl lSP -kVs +nLN nbP oyh oyh @@ -330402,7 +330402,7 @@ oyh nbP fYV tOv -uhk +bLH dPC dPC jRo @@ -330915,7 +330915,7 @@ oyh oyh nbP nbP -mjd +kwk lSP prS nbP @@ -332196,7 +332196,7 @@ aFj clH wvd trB -ykV +afA fQh aFj cnB @@ -332459,7 +332459,7 @@ aFj vug onI wdW -wHv +plb hux vyR dGN @@ -333228,7 +333228,7 @@ knH knH aFj hwK -wHv +plb hPC hPC hPC @@ -338369,10 +338369,10 @@ ucA ucA tUT tUT -gwD -chA -lhP -vba +iLe +xRF +vAK +iKe tUT ucA ucA @@ -338626,10 +338626,10 @@ ucA ucA tUT rlN -qRS -vKH -inK -gMd +qwd +ofM +liv +iZu tUT ucA ucA @@ -338883,10 +338883,10 @@ ucA ucA tUT tUT -qRS -jps -plE -ikF +qwd +wef +bkI +drH tUT ucA ucA diff --git a/_maps/map_files/generic/CentCom.dmm b/_maps/map_files/generic/CentCom.dmm index cdf2cdb10f83..1372c7b14d18 100644 --- a/_maps/map_files/generic/CentCom.dmm +++ b/_maps/map_files/generic/CentCom.dmm @@ -3706,25 +3706,6 @@ }, /turf/open/floor/iron, /area/centcom/central_command_areas/supply) -"ajM" = ( -/obj/machinery/light/floor/has_bulb, -/obj/structure/table/reinforced, -/obj/item/storage/backpack/duffelbag/med/surgery{ - pixel_x = 6; - pixel_y = 10 - }, -/obj/item/storage/backpack/duffelbag/med/surgery{ - pixel_x = 6 - }, -/obj/item/storage/backpack/duffelbag/med/surgery{ - pixel_x = -6; - pixel_y = 10 - }, -/obj/item/storage/backpack/duffelbag/med/surgery{ - pixel_x = -6 - }, -/turf/open/floor/iron/dark, -/area/centcom/central_command_areas/medical) "ajN" = ( /obj/structure/flora/tree/dead/style_random, /obj/structure/flora/grass/both/style_random, @@ -11232,16 +11213,6 @@ /obj/structure/railing/wood, /turf/open/floor/wood/large, /area/centcom/central_command_areas/admin_hangout) -"aDh" = ( -/obj/structure/bookcase, -/obj/item/book/granter/action/spell/random, -/obj/item/storage/book/bible, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/book/random, -/obj/item/book/random, -/obj/item/book/random, -/turf/open/floor/plating/abductor, -/area/centcom/central_command_areas/admin) "aDi" = ( /turf/closed/indestructible/riveted, /area/centcom/ai_multicam_room) @@ -16287,12 +16258,6 @@ /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/centcom/syndicate_mothership/control) -"aQx" = ( -/obj/machinery/door/puzzle/keycard/syndicate_suit_storage, -/turf/open/floor/iron/smooth_half{ - dir = 4 - }, -/area/centcom/syndicate_mothership/control) "aQy" = ( /obj/effect/turf_decal/siding/purple{ dir = 1 @@ -20136,6 +20101,17 @@ /obj/effect/turf_decal/bot_white, /turf/open/floor/iron/dark/textured_large, /area/cruiser_dock) +"dCp" = ( +/obj/structure/table/reinforced, +/obj/item/tank/jetpack/oxygen/harness{ + pixel_y = 10; + pixel_x = -2 + }, +/obj/item/gun/ballistic/automatic/plastikov{ + pixel_y = -3 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/centcom/syndicate_mothership/control) "dEH" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 8 @@ -20180,6 +20156,25 @@ }, /turf/open/floor/iron/dark/textured_large, /area/cruiser_dock) +"eFs" = ( +/obj/machinery/light/floor/has_bulb, +/obj/structure/table/reinforced, +/obj/item/storage/backpack/duffelbag/med/surgery{ + pixel_x = 6; + pixel_y = 10 + }, +/obj/item/storage/backpack/duffelbag/med/surgery{ + pixel_x = 6 + }, +/obj/item/storage/backpack/duffelbag/med/surgery{ + pixel_x = -6; + pixel_y = 10 + }, +/obj/item/storage/backpack/duffelbag/med/surgery{ + pixel_x = -6 + }, +/turf/open/floor/iron/dark, +/area/centcom/central_command_areas/medical) "eHN" = ( /obj/effect/turf_decal/loading_area/white{ dir = 4 @@ -20278,6 +20273,24 @@ /obj/machinery/light/cold/directional/south, /turf/open/misc/asteroid, /area/cruiser_dock) +"hjn" = ( +/obj/structure/table/reinforced, +/obj/item/flashlight/lantern/syndicate{ + pixel_x = 8; + pixel_y = 15 + }, +/obj/item/ammo_box/magazine/plastikov9mm{ + pixel_x = -8 + }, +/obj/item/ammo_box/magazine/plastikov9mm{ + pixel_x = -4 + }, +/obj/item/ammo_box/magazine/plastikov9mm, +/obj/item/ammo_box/magazine/plastikov9mm{ + pixel_x = 4 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/centcom/syndicate_mothership/control) "hkm" = ( /obj/effect/turf_decal/siding/thinplating_new/dark, /turf/open/floor/iron/smooth, @@ -20297,24 +20310,6 @@ dir = 4 }, /area/cruiser_dock) -"hCF" = ( -/obj/structure/table/reinforced, -/obj/item/flashlight/lantern/syndicate{ - pixel_x = 8; - pixel_y = 15 - }, -/obj/item/ammo_box/magazine/plastikov9mm{ - pixel_x = -8 - }, -/obj/item/ammo_box/magazine/plastikov9mm{ - pixel_x = -4 - }, -/obj/item/ammo_box/magazine/plastikov9mm, -/obj/item/ammo_box/magazine/plastikov9mm{ - pixel_x = 4 - }, -/turf/open/floor/catwalk_floor/iron_smooth, -/area/centcom/syndicate_mothership/control) "hFg" = ( /obj/effect/turf_decal/box/corners, /turf/open/floor/iron/dark/textured_large, @@ -20377,6 +20372,10 @@ }, /turf/open/floor/catwalk_floor/iron_smooth, /area/cruiser_dock) +"jdT" = ( +/mob/living/basic/bot/cleanbot/medbay, +/turf/open/floor/iron/dark, +/area/centcom/central_command_areas/medical) "jhk" = ( /obj/structure/marker_beacon/teal, /turf/open/misc/asteroid, @@ -20399,6 +20398,11 @@ /obj/machinery/light/cold/directional/west, /turf/open/floor/iron/dark/textured_large, /area/cruiser_dock) +"jQq" = ( +/obj/structure/rack, +/obj/item/clothing/suit/space/hardsuit/juggernaut, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/centcom/syndicate_mothership/control) "kqc" = ( /turf/open/floor/iron/stairs/left{ dir = 4 @@ -20455,17 +20459,6 @@ "nhm" = ( /turf/open/floor/iron/stairs/medium, /area/cruiser_dock) -"nmt" = ( -/obj/structure/table/reinforced, -/obj/item/tank/jetpack/oxygen/harness{ - pixel_y = 10; - pixel_x = -2 - }, -/obj/item/gun/ballistic/automatic/plastikov{ - pixel_y = -3 - }, -/turf/open/floor/catwalk_floor/iron_smooth, -/area/centcom/syndicate_mothership/control) "npG" = ( /obj/effect/turf_decal/box/corners{ dir = 8 @@ -20489,6 +20482,11 @@ /obj/machinery/chem_heater/withbuffer, /turf/open/floor/iron/dark/textured_large, /area/cruiser_dock) +"nKN" = ( +/obj/item/storage/toolbox/syndicate, +/obj/effect/decal/cleanable/oil/slippery, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/centcom/syndicate_mothership/control) "nUK" = ( /obj/docking_port/stationary{ dir = 8; @@ -20578,6 +20576,12 @@ }, /turf/open/floor/carpet/red, /area/cruiser_dock) +"pMp" = ( +/obj/machinery/door/puzzle/keycard/syndicate_suit_storage, +/turf/open/floor/iron/smooth_half{ + dir = 4 + }, +/area/centcom/syndicate_mothership/control) "qaG" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 1 @@ -20606,6 +20610,15 @@ "qwu" = ( /turf/open/floor/plating, /area/cruiser_dock) +"qCv" = ( +/obj/machinery/light/small/directional/west, +/obj/item/stack/cable_coil, +/obj/item/tank/internals/emergency_oxygen/double{ + pixel_x = -4; + pixel_y = 2 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/centcom/syndicate_mothership/control) "qCL" = ( /obj/structure/closet/crate/cardboard, /obj/item/reagent_containers/cup/glass/bottle/champagne, @@ -20628,15 +20641,16 @@ "rdl" = ( /turf/closed/indestructible/opsglass, /area/cruiser_dock) -"rCN" = ( -/obj/machinery/light/small/directional/west, -/obj/item/stack/cable_coil, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = -4; - pixel_y = 2 - }, -/turf/open/floor/catwalk_floor/iron_smooth, -/area/centcom/syndicate_mothership/control) +"rwj" = ( +/obj/structure/bookcase, +/obj/item/book/granter/action/spell/random, +/obj/item/book/bible, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/book/random, +/obj/item/book/random, +/obj/item/book/random, +/turf/open/floor/plating/abductor, +/area/centcom/central_command_areas/admin) "rHE" = ( /obj/effect/turf_decal/box/corners{ dir = 8 @@ -20685,11 +20699,6 @@ /obj/structure/sign/poster/contraband/free_drone/directional/north, /turf/open/floor/iron/dark/textured_large, /area/cruiser_dock) -"sNq" = ( -/obj/structure/rack, -/obj/item/clothing/suit/space/hardsuit/juggernaut, -/turf/open/floor/catwalk_floor/iron_smooth, -/area/centcom/syndicate_mothership/control) "sRv" = ( /obj/effect/turf_decal/box/corners{ dir = 1 @@ -20748,10 +20757,6 @@ /obj/machinery/light/cold/directional/west, /turf/open/misc/asteroid, /area/cruiser_dock) -"urz" = ( -/mob/living/basic/bot/cleanbot/medbay, -/turf/open/floor/iron/dark, -/area/centcom/central_command_areas/medical) "uuc" = ( /obj/effect/turf_decal/siding/thinplating_new/dark/corner{ dir = 1 @@ -20852,11 +20857,6 @@ /obj/machinery/light/cold/directional/north, /turf/open/floor/iron/dark/textured_large, /area/cruiser_dock) -"wul" = ( -/obj/item/storage/toolbox/syndicate, -/obj/effect/decal/cleanable/oil/slippery, -/turf/open/floor/catwalk_floor/iron_smooth, -/area/centcom/syndicate_mothership/control) "wuw" = ( /obj/structure/table, /obj/effect/spawner/random/food_or_drink/donkpockets{ @@ -22904,9 +22904,9 @@ aCp aCp aOd aku -nmt -sNq -rCN +dCp +jQq +qCv aPL avM aUe @@ -23161,9 +23161,9 @@ avL avu aHg aku -hCF +hjn ark -wul +nKN aPL ajG acX @@ -23419,7 +23419,7 @@ aJP azB aku anK -aQx +pMp anK aPL amz @@ -58916,7 +58916,7 @@ azX azX aqN aGY -aDh +rwj aOn aaa aaa @@ -68121,8 +68121,8 @@ aaa aaa aaa awe -ajM -urz +eFs +jdT acu aNb aXW diff --git a/_maps/map_files/tramstation/maintenance_modules/dormmedupper_attachment_a_3.dmm b/_maps/map_files/tramstation/maintenance_modules/dormmedupper_attachment_a_3.dmm index b4e024fcd23b..342a0007e032 100644 --- a/_maps/map_files/tramstation/maintenance_modules/dormmedupper_attachment_a_3.dmm +++ b/_maps/map_files/tramstation/maintenance_modules/dormmedupper_attachment_a_3.dmm @@ -5,12 +5,12 @@ /area/station/maintenance/department/crew_quarters/dorms) "h" = ( /obj/structure/window/spawner/directional/east, -/obj/item/storage/book/bible{ +/obj/item/book/bible{ pixel_x = -4; pixel_y = -4 }, -/obj/item/storage/book/bible, -/obj/item/storage/book/bible{ +/obj/item/book/bible, +/obj/item/book/bible{ pixel_x = 4; pixel_y = 4 }, diff --git a/_maps/map_files/tramstation/tramstation.dmm b/_maps/map_files/tramstation/tramstation.dmm index 43f0f4e03d29..3a6be6c7ac17 100644 --- a/_maps/map_files/tramstation/tramstation.dmm +++ b/_maps/map_files/tramstation/tramstation.dmm @@ -1743,11 +1743,6 @@ }, /turf/open/floor/iron/dark, /area/station/ai_monitored/turret_protected/aisat_interior) -"afJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/gary, -/turf/open/floor/iron/smooth, -/area/station/maintenance/central/greater) "afN" = ( /obj/structure/lattice/catwalk, /obj/structure/cable, @@ -5505,6 +5500,13 @@ /obj/machinery/duct, /turf/open/floor/iron/white, /area/station/medical/treatment_center) +"aLG" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/obj/machinery/computer/records/pathology, +/turf/open/floor/iron/white, +/area/station/medical/storage) "aLH" = ( /obj/effect/turf_decal/loading_area/white{ dir = 1 @@ -6069,11 +6071,6 @@ }, /turf/open/floor/plating, /area/station/ai_monitored/turret_protected/aisat/foyer) -"aQc" = ( -/obj/item/storage/book/bible, -/obj/structure/altar_of_gods, -/turf/open/floor/iron/dark, -/area/station/service/chapel) "aQd" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table, @@ -6559,6 +6556,11 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/engineering/atmos/pumproom) +"aVx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/gary, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard/central) "aVD" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/trimline/neutral/filled/line, @@ -6621,6 +6623,12 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron, /area/station/commons/fitness) +"aXq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/generic_maintenance_landmark, +/obj/effect/landmark/start/gary, +/turf/open/floor/iron/smooth, +/area/station/maintenance/department/crew_quarters/dorms) "aXu" = ( /obj/effect/turf_decal/caution/stand_clear/red{ dir = 4 @@ -6953,6 +6961,11 @@ /obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/catwalk_floor, /area/station/maintenance/port/aft) +"beN" = ( +/obj/effect/landmark/start/assistant, +/obj/effect/landmark/start/gary/rare, +/turf/open/floor/wood/parquet, +/area/station/service/library) "beP" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment{ @@ -7147,11 +7160,6 @@ /obj/item/radio/off, /turf/open/floor/iron/smooth, /area/station/maintenance/starboard/lesser) -"bhR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/gary, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/crew_quarters/dorms) "bia" = ( /obj/machinery/light/directional/east, /obj/machinery/modular_computer/preset/engineering{ @@ -7493,6 +7501,12 @@ dir = 1 }, /area/station/hallway/secondary/service) +"box" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/obj/effect/landmark/start/gary, +/turf/open/floor/iron/smooth, +/area/station/maintenance/department/medical) "boJ" = ( /obj/item/pickaxe, /turf/open/misc/asteroid/airless, @@ -8645,6 +8659,11 @@ }, /turf/open/floor/iron/white, /area/station/science/lower) +"bGG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/gary, +/turf/open/floor/iron/smooth, +/area/station/maintenance/port/aft) "bGI" = ( /obj/structure/chair/comfy/beige{ dir = 1 @@ -9911,6 +9930,15 @@ /obj/machinery/door/airlock/public/glass, /turf/open/floor/iron/smooth, /area/station/hallway/primary/tram/right) +"cav" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/spawner/random/engineering/tracking_beacon, +/obj/structure/cable, +/obj/effect/landmark/start/gary/uncommon, +/turf/open/floor/wood, +/area/station/commons/vacant_room/office) "cay" = ( /obj/machinery/computer/security{ dir = 1 @@ -11826,6 +11854,14 @@ /obj/machinery/seed_extractor, /turf/open/floor/iron/dark, /area/station/security/prison/garden) +"cFZ" = ( +/obj/structure/table/wood, +/obj/machinery/firealarm/directional/north, +/obj/item/book/bible, +/turf/open/floor/iron/chapel{ + dir = 9 + }, +/area/station/service/chapel) "cGc" = ( /obj/structure/cable, /turf/open/floor/iron, @@ -12817,6 +12853,15 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/tram/center) +"cYx" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/effect/landmark/start/gary/rare, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation/entertainment) "cYA" = ( /obj/docking_port/stationary{ dheight = 4; @@ -17453,11 +17498,6 @@ }, /turf/open/floor/iron/white, /area/station/science/ordnance) -"evs" = ( -/obj/effect/landmark/start/assistant, -/obj/effect/landmark/start/gary/rare, -/turf/open/floor/wood/parquet, -/area/station/service/library) "evu" = ( /obj/effect/turf_decal/trimline/neutral/filled/line{ dir = 8 @@ -18376,11 +18416,6 @@ "eNx" = ( /turf/open/floor/iron/grimy, /area/station/service/library/lounge) -"eNy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/gary, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/central) "eNH" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 4 @@ -19171,10 +19206,6 @@ /obj/structure/closet/cardboard, /turf/open/floor/plating, /area/station/maintenance/starboard/lesser) -"eZD" = ( -/obj/effect/landmark/start/gary/rare, -/turf/open/floor/iron/grimy, -/area/station/service/library/lounge) "eZS" = ( /obj/machinery/door/airlock/grunge{ name = "Entertainment Center" @@ -20151,6 +20182,10 @@ }, /turf/open/floor/plating, /area/station/cargo/sorting) +"fqe" = ( +/obj/effect/landmark/start/gary/rare, +/turf/open/floor/iron/grimy, +/area/station/service/library/lounge) "fqn" = ( /obj/effect/turf_decal/trimline/red/filled/corner{ dir = 1 @@ -20199,11 +20234,6 @@ /obj/structure/industrial_lift/public, /turf/open/floor/plating/elevatorshaft, /area/station/hallway/secondary/service) -"frQ" = ( -/obj/structure/flora/bush/flowers_yw/style_random, -/obj/effect/landmark/start/gary/uncommon, -/turf/open/floor/grass, -/area/station/asteroid) "frT" = ( /obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden, /turf/closed/wall/r_wall, @@ -24275,6 +24305,11 @@ dir = 4 }, /area/station/command/teleporter) +"gKm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/gary, +/turf/open/floor/iron/smooth, +/area/station/maintenance/port/central) "gKr" = ( /obj/effect/turf_decal/siding/thinplating, /obj/structure/cable, @@ -26127,12 +26162,6 @@ }, /turf/open/floor/iron/dark, /area/station/science/lower) -"hqL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/effect/landmark/start/gary, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/medical) "hqN" = ( /obj/structure/weightmachine/weightlifter, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -27871,11 +27900,6 @@ /obj/structure/cable/layer1, /turf/open/floor/iron/dark, /area/station/ai_monitored/turret_protected/aisat/hallway) -"hVC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/gary, -/turf/open/floor/iron/smooth, -/area/station/maintenance/port/central) "hVD" = ( /obj/machinery/computer/teleporter{ dir = 1 @@ -30282,6 +30306,11 @@ /obj/effect/landmark/navigate_destination/tram/bankofcargo, /turf/open/floor/iron/dark, /area/station/cargo/miningdock/oresilo) +"iIT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/gary, +/turf/open/floor/iron/smooth, +/area/station/maintenance/starboard/central) "iJd" = ( /obj/effect/turf_decal/trimline/neutral/filled/corner{ dir = 4 @@ -31020,21 +31049,6 @@ /obj/structure/cable, /turf/open/floor/iron/dark/textured, /area/station/engineering/main) -"iUf" = ( -/obj/machinery/door/airlock/grunge{ - name = "Morgue" - }, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/access/any/medical/general, -/obj/effect/mapping_helpers/airlock/access/any/medical/morgue, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) "iUh" = ( /turf/closed/wall, /area/station/security/warden) @@ -31225,6 +31239,11 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/commons/fitness/recreation) +"iWn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/gary, +/turf/open/floor/iron, +/area/station/maintenance/starboard/central) "iWz" = ( /obj/machinery/door/airlock/external/glass{ name = "Supply Door Airlock" @@ -37976,6 +37995,11 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) +"lau" = ( +/obj/item/book/bible, +/obj/structure/altar_of_gods, +/turf/open/floor/iron/dark, +/area/station/service/chapel) "lav" = ( /obj/machinery/holopad, /obj/effect/turf_decal/trimline/neutral/corner{ @@ -38298,11 +38322,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/catwalk_floor, /area/station/maintenance/tram/mid) -"lfe" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/start/gary, -/turf/open/floor/iron/dark, -/area/station/commons/vacant_room/commissary) "lfq" = ( /obj/effect/turf_decal/trimline/white/warning{ dir = 4 @@ -40855,15 +40874,6 @@ /obj/item/pen, /turf/open/floor/iron, /area/station/security/checkpoint/supply) -"lXC" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/obj/machinery/airalarm/directional/north, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/computer/records/pathology, -/turf/open/floor/iron/dark, -/area/station/medical/pathology) "lXH" = ( /obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible{ dir = 1 @@ -41124,6 +41134,11 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/showroomfloor, /area/station/security/warden) +"mcb" = ( +/obj/structure/flora/bush/flowers_yw/style_random, +/obj/effect/landmark/start/gary/uncommon, +/turf/open/floor/grass, +/area/station/asteroid) "mcf" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -41293,12 +41308,6 @@ /obj/item/queen_bee/bought, /turf/open/floor/iron/dark, /area/station/service/hydroponics) -"met" = ( -/obj/structure/chair/stool/bar/directional/east, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/gary, -/turf/open/floor/iron/smooth, -/area/station/maintenance/starboard/greater) "meu" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 8 @@ -43394,12 +43403,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/service/hydroponics/garden) -"mNI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/generic_maintenance_landmark, -/obj/effect/landmark/start/gary, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/crew_quarters/dorms) "mNN" = ( /obj/structure/chair/comfy/brown{ dir = 1 @@ -43548,13 +43551,6 @@ /obj/effect/spawner/random/engineering/canister, /turf/open/floor/plating, /area/station/maintenance/port/aft) -"mPr" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 9 - }, -/obj/machinery/computer/records/pathology, -/turf/open/floor/iron/white, -/area/station/medical/storage) "mPA" = ( /obj/structure/cable, /obj/effect/turf_decal/sand/plating, @@ -45059,31 +45055,6 @@ /obj/machinery/cassette/adv_cassette_deck, /turf/open/floor/wood/large, /area/station/service/library) -"noG" = ( -/obj/machinery/button/door/directional/east{ - id = "armory"; - name = "Armory Shutters"; - req_access = list("armory") - }, -/obj/machinery/status_display/ai/directional/north, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/rack, -/obj/item/ammo_box/magazine/m35, -/obj/item/ammo_box/magazine/m35, -/obj/item/ammo_box/magazine/m35, -/obj/item/ammo_box/magazine/m35, -/obj/item/ammo_box/magazine/m35, -/obj/item/ammo_box/magazine/m35, -/obj/item/ammo_box/magazine/m35, -/obj/item/ammo_box/magazine/m35, -/obj/item/ammo_box/magazine/m35, -/obj/item/ammo_box/magazine/m35, -/obj/item/gun/ballistic/automatic/pistol/paco/no_mag, -/obj/item/gun/ballistic/automatic/pistol/paco/no_mag{ - pixel_y = 6 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) "noI" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 1 @@ -45277,6 +45248,22 @@ }, /turf/open/floor/iron/white, /area/station/science/lower) +"nrt" = ( +/obj/structure/rack, +/obj/structure/window/spawner/directional/east, +/obj/item/book/bible{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/book/bible, +/obj/item/book/bible{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/structure/window/spawner/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/smooth, +/area/station/maintenance/department/crew_quarters/dorms) "nrM" = ( /obj/machinery/door/airlock/mining/glass{ name = "Cargo Office" @@ -45792,22 +45779,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/station/commons/fitness/recreation) -"nzK" = ( -/obj/structure/rack, -/obj/structure/window/spawner/directional/east, -/obj/item/storage/book/bible{ - pixel_x = -4; - pixel_y = -4 - }, -/obj/item/storage/book/bible, -/obj/item/storage/book/bible{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/structure/window/spawner/directional/south, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/crew_quarters/dorms) "nzL" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 8 @@ -46475,11 +46446,6 @@ /obj/structure/sign/directions/ptl/directional/west, /turf/open/floor/iron, /area/station/engineering/main) -"nMn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/gary, -/turf/open/floor/iron/smooth, -/area/station/maintenance/central/lesser) "nMr" = ( /obj/effect/turf_decal/trimline/dark_red/warning{ dir = 10 @@ -47779,15 +47745,6 @@ }, /turf/open/floor/iron/dark/textured, /area/station/engineering/main) -"oht" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/effect/landmark/start/gary/rare, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation/entertainment) "ohw" = ( /obj/structure/flora/bush/flowers_pp, /obj/structure/chair/sofa/bench/right{ @@ -47809,12 +47766,6 @@ /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/station/cargo/storage) -"ohW" = ( -/obj/structure/table/wood, -/obj/machinery/light/dim/directional/north, -/obj/item/storage/book/bible, -/turf/open/floor/carpet, -/area/station/service/chapel/monastery) "ohY" = ( /obj/machinery/power/apc/auto_name/directional/south, /obj/effect/turf_decal/trimline/red/filled/line, @@ -51701,6 +51652,13 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/command) +"pys" = ( +/obj/machinery/plumbing/ooze_sucker{ + mapping_id = "6" + }, +/obj/machinery/light/floor/has_bulb, +/turf/open/floor/engine, +/area/station/science/xenobiology) "pyu" = ( /obj/effect/turf_decal/siding/thinplating/corner{ dir = 1 @@ -52199,11 +52157,6 @@ }, /turf/open/space/openspace, /area/space) -"pEE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/gary, -/turf/open/floor/iron/smooth, -/area/station/maintenance/starboard/central) "pEL" = ( /obj/machinery/atmospherics/pipe/bridge_pipe/dark/visible{ dir = 8 @@ -52850,6 +52803,11 @@ /obj/structure/spider/passage, /turf/open/floor/iron/smooth, /area/station/maintenance/starboard/lesser) +"pNr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/gary, +/turf/open/floor/iron/smooth, +/area/station/maintenance/central/greater) "pNz" = ( /obj/effect/landmark/navigate_destination/chapel, /turf/open/floor/carpet, @@ -54286,11 +54244,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/security/brig) -"qml" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/gary, -/turf/open/floor/iron/smooth, -/area/station/maintenance/port/aft) "qmp" = ( /obj/machinery/light/small/directional/east, /turf/open/floor/engine/n2o, @@ -55015,13 +54968,6 @@ /obj/effect/turf_decal/trimline/neutral/filled/corner, /turf/open/floor/iron, /area/station/security/courtroom) -"qyA" = ( -/obj/machinery/plumbing/ooze_sucker{ - mapping_id = "6" - }, -/obj/machinery/light/floor/has_bulb, -/turf/open/floor/engine, -/area/station/science/xenobiology) "qyI" = ( /obj/effect/landmark/tram/tramstation/east, /turf/open/floor/noslip/tram_plate, @@ -55459,13 +55405,6 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/station/ai_monitored/security/armory) -"qFc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/landmark/start/gary/uncommon, -/turf/open/floor/stone, -/area/station/smithing) "qFf" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 8 @@ -56818,6 +56757,12 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/engineering/gravity_generator) +"qZQ" = ( +/obj/structure/chair/stool/bar/directional/east, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/gary, +/turf/open/floor/iron/smooth, +/area/station/maintenance/starboard/greater) "raf" = ( /obj/machinery/light/directional/west, /obj/structure/cable, @@ -56936,6 +56881,21 @@ /obj/effect/turf_decal/stripes/white/line, /turf/open/floor/iron, /area/station/hallway/primary/tram/left) +"rbg" = ( +/obj/machinery/door/airlock/grunge{ + name = "Morgue" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, +/obj/effect/mapping_helpers/airlock/access/any/medical/morgue, +/turf/open/floor/iron/dark, +/area/station/medical/morgue) "rbj" = ( /obj/machinery/requests_console/directional/east{ assistance_requestable = 1; @@ -57171,12 +57131,6 @@ }, /turf/open/floor/iron/white, /area/station/medical/surgery/aft) -"rfs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/blobstart, -/obj/effect/landmark/start/gary, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/medical) "rfP" = ( /obj/structure/cable, /turf/open/floor/wood, @@ -60151,6 +60105,13 @@ /obj/structure/railing, /turf/open/openspace, /area/station/solars/port) +"sgm" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/landmark/start/gary/uncommon, +/turf/open/floor/stone, +/area/station/smithing) "sgo" = ( /mob/living/basic/butterfly, /turf/open/floor/grass, @@ -60741,6 +60702,16 @@ }, /turf/open/floor/iron/white, /area/station/science/research) +"sqm" = ( +/obj/machinery/door/airlock/grunge{ + name = "Morgue External Access" + }, +/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/medical/morgue, +/turf/open/floor/iron/dark, +/area/station/medical/morgue) "sqq" = ( /obj/effect/mob_spawn/corpse/human/charredskeleton, /obj/effect/decal/cleanable/blood/splatter, @@ -60756,6 +60727,11 @@ /obj/structure/extinguisher_cabinet/directional/west, /turf/open/floor/iron, /area/station/security/courtroom) +"sqC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/gary, +/turf/open/floor/iron/smooth, +/area/station/maintenance/starboard/greater) "sqF" = ( /obj/effect/turf_decal/trimline/green/corner{ dir = 8 @@ -61136,6 +61112,15 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/station/medical/pathology) +"svP" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/machinery/airalarm/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/computer/records/pathology, +/turf/open/floor/iron/dark, +/area/station/medical/pathology) "svZ" = ( /obj/effect/turf_decal/trimline/red/filled/line, /obj/machinery/light/directional/south, @@ -62489,6 +62474,11 @@ "sQZ" = ( /turf/closed/wall/r_wall, /area/station/science/explab) +"sRa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/gary, +/turf/open/floor/iron/smooth, +/area/station/maintenance/department/crew_quarters/dorms) "sRh" = ( /obj/structure/showcase/cyborg/old{ pixel_y = 20 @@ -64007,6 +63997,11 @@ }, /turf/open/floor/noslip/tram_plate, /area/station/hallway/primary/tram/right) +"toN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/gary, +/turf/open/floor/plating, +/area/station/maintenance/starboard/greater) "toY" = ( /obj/structure/table/wood, /obj/structure/reagent_dispensers/wall/peppertank/directional/east, @@ -64938,6 +64933,11 @@ "tDT" = ( /turf/open/openspace, /area/station/commons/fitness/recreation) +"tEd" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/landmark/start/gary, +/turf/open/floor/iron/dark, +/area/station/commons/vacant_room/commissary) "tEe" = ( /obj/structure/flora/bush/sparsegrass/style_random, /obj/structure/flora/bush/grassy/style_random, @@ -65822,11 +65822,6 @@ }, /turf/open/floor/iron, /area/station/engineering/atmos) -"tUc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/gary, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) "tUH" = ( /obj/structure/rack, /obj/item/clothing/under/color/blue, @@ -66977,6 +66972,12 @@ /obj/effect/turf_decal/trimline/neutral/filled/warning, /turf/open/floor/iron, /area/station/hallway/primary/tram/left) +"unN" = ( +/obj/structure/table/wood, +/obj/machinery/light/dim/directional/north, +/obj/item/book/bible, +/turf/open/floor/carpet, +/area/station/service/chapel/monastery) "unS" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -69015,11 +69016,6 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/ai_monitored/turret_protected/aisat/maint) -"uTq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/gary, -/turf/open/floor/iron, -/area/station/maintenance/starboard/central) "uTz" = ( /obj/structure/railing{ dir = 8 @@ -70659,14 +70655,6 @@ }, /turf/open/floor/iron, /area/station/security/prison/workout) -"vrd" = ( -/obj/structure/table/wood, -/obj/machinery/firealarm/directional/north, -/obj/item/storage/book/bible, -/turf/open/floor/iron/chapel{ - dir = 9 - }, -/area/station/service/chapel) "vre" = ( /obj/effect/turf_decal/trimline/dark_red/warning{ dir = 1 @@ -71263,6 +71251,31 @@ /obj/effect/spawner/random/engineering/tank, /turf/open/floor/iron/smooth, /area/station/maintenance/department/crew_quarters/dorms) +"vzg" = ( +/obj/machinery/button/door/directional/east{ + id = "armory"; + name = "Armory Shutters"; + req_access = list("armory") + }, +/obj/machinery/status_display/ai/directional/north, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/rack, +/obj/item/ammo_box/magazine/m35, +/obj/item/ammo_box/magazine/m35, +/obj/item/ammo_box/magazine/m35, +/obj/item/ammo_box/magazine/m35, +/obj/item/ammo_box/magazine/m35, +/obj/item/ammo_box/magazine/m35, +/obj/item/ammo_box/magazine/m35, +/obj/item/ammo_box/magazine/m35, +/obj/item/ammo_box/magazine/m35, +/obj/item/ammo_box/magazine/m35, +/obj/item/gun/ballistic/automatic/pistol/paco/no_mag, +/obj/item/gun/ballistic/automatic/pistol/paco/no_mag{ + pixel_y = 6 + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) "vzl" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/trash/garbage, @@ -72840,15 +72853,6 @@ }, /turf/open/floor/carpet, /area/station/command/bridge) -"vZW" = ( -/obj/effect/turf_decal/siding/wood/corner{ - dir = 4 - }, -/obj/effect/spawner/random/engineering/tracking_beacon, -/obj/structure/cable, -/obj/effect/landmark/start/gary/uncommon, -/turf/open/floor/wood, -/area/station/commons/vacant_room/office) "vZX" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -74046,21 +74050,6 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/iron/freezer, /area/station/commons/toilet) -"wtJ" = ( -/obj/machinery/door/airlock/grunge{ - name = "Morgue External Access" - }, -/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/medical/morgue, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"wtN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/gary, -/turf/open/floor/iron/smooth, -/area/station/maintenance/starboard/greater) "wtP" = ( /obj/structure/closet{ name = "Evidence Closet 2" @@ -77927,6 +77916,11 @@ /obj/machinery/vending/wallmed/directional/north, /turf/open/floor/iron/white, /area/station/medical/medbay/central) +"xKz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/gary, +/turf/open/floor/iron/smooth, +/area/station/maintenance/central/lesser) "xKD" = ( /obj/structure/dresser, /turf/open/floor/carpet/executive, @@ -79220,6 +79214,12 @@ /obj/machinery/airalarm/directional/south, /turf/open/floor/iron/dark, /area/station/medical/storage) +"yeR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/blobstart, +/obj/effect/landmark/start/gary, +/turf/open/floor/iron/smooth, +/area/station/maintenance/department/medical) "yeX" = ( /obj/machinery/computer/telecomms/monitor{ dir = 1; @@ -92495,7 +92495,7 @@ apC jXf yah jfs -bhR +sRa lOR yah aac @@ -94038,7 +94038,7 @@ cAY apC lgu lgu -bhR +sRa lgu apC aaa @@ -98365,7 +98365,7 @@ pZW pVD jAk jAk -hVC +gKm jAk jAk ahU @@ -99955,7 +99955,7 @@ snM xJZ lgu lgu -bhR +sRa lgu apC aac @@ -101239,7 +101239,7 @@ jnq vqn jnq lgu -bhR +sRa gsE apC ncE @@ -102506,7 +102506,7 @@ qOf amu rtp kWN -oht +cYx byx kWN rtp @@ -105772,7 +105772,7 @@ vXM aac qLK lnY -afJ +pNr nMu jcq nMu @@ -106054,7 +106054,7 @@ hFr hFr hFr aTT -afJ +pNr nMu nMu hFr @@ -106101,7 +106101,7 @@ aaa jnq cRa juN -nMn +xKz sAK pmz dzp @@ -106554,7 +106554,7 @@ eSk jbH iXh nMu -afJ +pNr nMu hFr qxf @@ -115829,7 +115829,7 @@ quF wfU quF quF -wtN +sqC quF iRL gbF @@ -117366,7 +117366,7 @@ aac siI iRB fIA -tUc +toN fIA iRL wkE @@ -121233,7 +121233,7 @@ iRL pWy iRL vqz -met +qZQ kOI quF aaS @@ -121484,7 +121484,7 @@ aaa aaa iRL quF -wtN +sqC mAF cOx pWy @@ -123312,7 +123312,7 @@ ejC ePU qxm ryO -pEE +iIT gDw qxm nZX @@ -124337,7 +124337,7 @@ gBw sIW whZ bvT -qFc +sgm glO hxW qxm @@ -126680,7 +126680,7 @@ vmk qVr bfH bfH -qyA +pys xQh cim kTh @@ -128967,7 +128967,7 @@ oys oys pom cwB -uTq +iWn oys iix xYf @@ -130755,7 +130755,7 @@ ecO kDR oNd kDR -eNy +aVx hiJ pAf oAw @@ -155152,7 +155152,7 @@ aaa iyc fCO kMf -vZW +cav mpa sQe iyc @@ -157514,7 +157514,7 @@ tdx mQa mQa mQa -qml +bGG mQa mQa mQa @@ -158277,7 +158277,7 @@ hnH gFt cSr gCQ -evs +beN dyx tdx tVH @@ -159568,7 +159568,7 @@ kgd rAS iMy eNx -eZD +fqe eNx apO tdx @@ -162918,7 +162918,7 @@ gHe gHe hYh vCZ -ohW +unN skw kkg buB @@ -163685,7 +163685,7 @@ jkt jkt aPg piE -aQc +lau aQx kUo tXn @@ -164191,7 +164191,7 @@ tDT ylF srN pUw -vrd +cFZ qOi oqS mEs @@ -164633,7 +164633,7 @@ rmB rmB dEv dEv -noG +vzg mcU eka dEv @@ -167538,7 +167538,7 @@ jPK bpr bcG fmS -bhR +sRa apC aaa aaa @@ -168559,7 +168559,7 @@ ndb fsC hSE lgu -mNI +aXq lgu apC jPK @@ -169071,7 +169071,7 @@ fsC whz whz whz -nzK +nrt lgu lgu fas @@ -171121,7 +171121,7 @@ acm abW abW abW -frQ +mcb abW abS abW @@ -172163,7 +172163,7 @@ apC jPK apC lgu -bhR +sRa lgu apC xOk @@ -173176,7 +173176,7 @@ xBk pMh drn bdq -mPr +aLG vcv odH kRL @@ -180371,7 +180371,7 @@ oXP xOM oIa oIa -iUf +rbg oIa bFq bFq @@ -181666,7 +181666,7 @@ whz rXK srX ugt -lXC +svP txh sAd ykV @@ -182684,7 +182684,7 @@ vNN whz whz whz -wtJ +sqm whz whz whz @@ -182951,7 +182951,7 @@ vNN mHl kSi cyX -rfs +yeR srC rZZ rNg @@ -184232,7 +184232,7 @@ xTG xTG xip obu -hqL +box vlE kSi kSi @@ -193727,7 +193727,7 @@ ptZ nSI axt eRb -lfe +tEd rMB gAQ eoX diff --git a/_maps/shuttles/emergency_monastery.dmm b/_maps/shuttles/emergency_monastery.dmm index 3429afc533d2..60677eb6b1a2 100644 --- a/_maps/shuttles/emergency_monastery.dmm +++ b/_maps/shuttles/emergency_monastery.dmm @@ -427,6 +427,15 @@ /obj/structure/window/reinforced/spawner/directional/east, /turf/open/space/basic, /area/shuttle/escape) +"hu" = ( +/obj/item/paint/paint_remover{ + pixel_y = 8 + }, +/obj/structure/table/wood, +/obj/item/soap/nanotrasen, +/obj/structure/sign/poster/official/fruit_bowl/directional/north, +/turf/open/floor/iron/dark, +/area/shuttle/escape) "hC" = ( /obj/machinery/power/shuttle_engine/propulsion, /obj/structure/window/reinforced/spawner/directional/east{ @@ -462,6 +471,16 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/shuttle/escape) +"hT" = ( +/obj/item/storage/crayons{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/crayons, +/obj/structure/table/wood, +/obj/structure/sign/poster/official/soft_cap_pop_art/directional/north, +/turf/open/floor/iron/dark, +/area/shuttle/escape) "hV" = ( /obj/structure/window/reinforced/spawner/directional/north{ pixel_y = 1 @@ -531,16 +550,6 @@ /obj/machinery/photocopier, /turf/open/floor/iron/dark, /area/shuttle/escape) -"iE" = ( -/obj/item/storage/crayons{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/storage/crayons, -/obj/structure/table/wood, -/obj/structure/sign/poster/official/soft_cap_pop_art/directional/north, -/turf/open/floor/iron/dark, -/area/shuttle/escape) "iI" = ( /obj/machinery/light/small/directional/west, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -1307,6 +1316,11 @@ /obj/effect/turf_decal/tile/red/fourcorners, /turf/open/floor/iron/dark, /area/shuttle/escape) +"sS" = ( +/obj/structure/table/wood/fancy, +/obj/item/book/bible, +/turf/open/floor/carpet, +/area/shuttle/escape) "sT" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/tile/red/anticorner/contrasted{ @@ -1613,14 +1627,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/shuttle/escape) -"yr" = ( -/obj/structure/closet, -/obj/machinery/light/small/directional/south, -/obj/item/storage/book/bible, -/obj/item/storage/book/bible, -/obj/item/storage/book/bible, -/turf/open/floor/carpet, -/area/shuttle/escape) "yu" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 10 @@ -1808,6 +1814,12 @@ /obj/item/kitchen/fork, /turf/open/floor/iron/dark, /area/shuttle/escape) +"Aw" = ( +/obj/item/book/bible, +/obj/structure/cable, +/obj/structure/altar_of_gods, +/turf/open/floor/carpet, +/area/shuttle/escape) "Ax" = ( /turf/open/floor/mineral/plastitanium/red, /area/shuttle/escape/brig) @@ -2024,15 +2036,6 @@ }, /turf/open/floor/iron/grimy, /area/shuttle/escape) -"Dn" = ( -/obj/item/paint/paint_remover{ - pixel_y = 8 - }, -/obj/structure/table/wood, -/obj/item/soap/nanotrasen, -/obj/structure/sign/poster/official/fruit_bowl/directional/north, -/turf/open/floor/iron/dark, -/area/shuttle/escape) "Dr" = ( /obj/machinery/camera/directional/west{ c_tag = "Monastery Kitchen"; @@ -2049,12 +2052,6 @@ /obj/structure/flora/bush, /turf/open/misc/asteroid, /area/shuttle/escape) -"Dv" = ( -/obj/item/storage/book/bible, -/obj/structure/cable, -/obj/structure/altar_of_gods, -/turf/open/floor/carpet, -/area/shuttle/escape) "Dw" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -3205,11 +3202,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/shuttle/escape) -"Si" = ( -/obj/structure/table/wood/fancy, -/obj/item/storage/book/bible, -/turf/open/floor/carpet, -/area/shuttle/escape) "Sj" = ( /obj/structure/extinguisher_cabinet/directional/west, /obj/machinery/light/small/directional/south, @@ -3872,6 +3864,14 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/shuttle/escape) +"ZV" = ( +/obj/structure/closet, +/obj/machinery/light/small/directional/south, +/obj/item/book/bible, +/obj/item/book/bible, +/obj/item/book/bible, +/turf/open/floor/carpet, +/area/shuttle/escape) "ZZ" = ( /obj/structure/cable, /turf/open/floor/carpet, @@ -4401,7 +4401,7 @@ BG eW rX eQ -yr +ZV nr yO Ab @@ -4743,7 +4743,7 @@ Pz kw oa eQ -Si +sS Ti RM Xs @@ -5790,7 +5790,7 @@ ZZ ZZ ZZ ZZ -Dv +Aw sm jx iS @@ -7111,7 +7111,7 @@ JG JG Ho yc -Dn +hu Vl oc oc @@ -7275,7 +7275,7 @@ JG JG Ho yc -iE +hT FY FY FY diff --git a/_maps/templates/holodeck_chapelcourt.dmm b/_maps/templates/holodeck_chapelcourt.dmm index 96c39503c3eb..b3141fd42f50 100644 --- a/_maps/templates/holodeck_chapelcourt.dmm +++ b/_maps/templates/holodeck_chapelcourt.dmm @@ -1,52 +1,10 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aa" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/closet/secure_closet/courtroom, -/turf/open/floor/holofloor/dark, -/area/template_noop) -"ab" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table/wood, -/obj/item/food/grown/harebell, -/obj/item/food/grown/harebell, -/obj/item/food/grown/harebell, -/obj/item/food/grown/harebell, -/obj/item/food/grown/harebell, -/turf/open/floor/holofloor/dark, -/area/template_noop) "ac" = ( /obj/structure/chair{ dir = 1 }, /turf/open/floor/holofloor/chapel/bottom_left, /area/template_noop) -"ad" = ( -/obj/structure/table/wood/fancy, -/obj/item/clothing/suit/chaplainsuit/nun, -/obj/item/clothing/head/chaplain/nun_hood, -/obj/item/clothing/suit/chaplainsuit/holidaypriest, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/holofloor/dark, -/area/template_noop) "ae" = ( /obj/structure/table/wood, /obj/item/folder/blue, @@ -62,21 +20,6 @@ "ag" = ( /turf/open/floor/holofloor/chapel/top_left, /area/template_noop) -"ah" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table/wood, -/obj/item/food/grown/poppy, -/obj/item/food/grown/poppy, -/obj/item/food/grown/poppy, -/obj/item/food/grown/poppy, -/obj/item/food/grown/poppy, -/turf/open/floor/holofloor/dark, -/area/template_noop) "ai" = ( /turf/open/floor/holofloor/chapel/bottom_right, /area/template_noop) @@ -94,88 +37,11 @@ }, /turf/open/floor/holofloor/chapel/top_right, /area/template_noop) -"al" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table/wood, -/obj/item/folder/blue, -/obj/item/pen/red, -/turf/open/floor/holofloor/dark, -/area/template_noop) -"am" = ( -/obj/item/clothing/head/helmet/chaplain/witchunter_hat, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table/wood/fancy, -/turf/open/floor/holofloor/dark, -/area/template_noop) "an" = ( /obj/structure/table/wood, /obj/effect/turf_decal/tile/neutral/half/contrasted, /turf/open/floor/holofloor/dark, /area/template_noop) -"ao" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table/wood, -/obj/item/storage/fancy/candle_box, -/turf/open/floor/holofloor/dark, -/area/template_noop) -"ap" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/holofloor/dark, -/area/template_noop) -"aq" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table/wood, -/obj/item/folder/red, -/obj/item/pen/red, -/turf/open/floor/holofloor/dark, -/area/template_noop) -"ar" = ( -/obj/item/gavelblock, -/obj/item/gavelhammer, -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/holofloor/dark, -/area/template_noop) -"as" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/holofloor/dark, -/area/template_noop) "at" = ( /obj/structure/table/wood, /obj/item/food/grown/harebell, @@ -188,21 +54,6 @@ }, /turf/open/floor/holofloor/dark, /area/template_noop) -"au" = ( -/obj/structure/table/wood/fancy, -/obj/item/storage/book/bible, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/holofloor/dark, -/area/template_noop) "av" = ( /obj/structure/table/wood, /obj/item/folder/red, @@ -212,41 +63,6 @@ }, /turf/open/floor/holofloor/dark, /area/template_noop) -"aw" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/holofloor/dark, -/area/template_noop) -"ax" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/holofloor/dark, -/area/template_noop) -"ay" = ( -/obj/item/toy/figure/chaplain, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table/wood/fancy, -/turf/open/floor/holofloor/dark, -/area/template_noop) "az" = ( /obj/structure/closet/secure_closet/courtroom, /obj/effect/turf_decal/tile/neutral/opposingcorners{ @@ -285,22 +101,6 @@ }, /turf/open/floor/holofloor/chapel/bottom_right, /area/template_noop) -"aF" = ( -/obj/item/clothing/suit/costume/judgerobe, -/obj/item/clothing/head/costume/powdered_wig, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table/wood/fancy, -/turf/open/floor/holofloor/dark, -/area/template_noop) "aG" = ( /obj/structure/table/wood, /obj/item/food/grown/poppy, @@ -313,30 +113,6 @@ }, /turf/open/floor/holofloor/dark, /area/template_noop) -"aH" = ( -/obj/structure/table/wood/fancy, -/obj/item/book/manual/wiki/security_space_law, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/holofloor/dark, -/area/template_noop) -"aI" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/holofloor/dark, -/area/template_noop) "aJ" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 8 @@ -346,45 +122,12 @@ "aK" = ( /turf/open/floor/holofloor/chapel/top_right, /area/template_noop) -"aL" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/holofloor/dark, -/area/template_noop) "aM" = ( /obj/effect/turf_decal/tile/neutral/opposingcorners{ dir = 1 }, /turf/open/floor/holofloor/dark, /area/template_noop) -"aN" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/holofloor/dark, -/area/template_noop) -"aO" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table/wood, -/obj/item/paper_bin, -/turf/open/floor/holofloor/dark, -/area/template_noop) "aP" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/holofloor/dark, @@ -397,36 +140,12 @@ /obj/effect/turf_decal/tile/neutral/anticorner/contrasted, /turf/open/floor/holofloor/dark, /area/template_noop) -"aS" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/holofloor/dark, -/area/template_noop) "aT" = ( /obj/structure/chair{ dir = 1 }, /turf/open/floor/holofloor/chapel/top_left, /area/template_noop) -"aU" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table/wood, -/obj/item/hand_labeler, -/turf/open/floor/holofloor/dark, -/area/template_noop) "aV" = ( /obj/structure/chair{ dir = 1 @@ -436,31 +155,6 @@ }, /turf/open/floor/holofloor/dark, /area/template_noop) -"aW" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/holofloor/dark, -/area/template_noop) -"aX" = ( -/obj/item/clothing/suit/chaplainsuit/bishoprobe, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table/wood/fancy, -/turf/open/floor/holofloor/dark, -/area/template_noop) "aY" = ( /obj/item/gavelblock, /obj/item/gavelhammer, @@ -495,7 +189,7 @@ /area/template_noop) "kv" = ( /obj/structure/table/wood/fancy, -/obj/item/storage/book/bible, +/obj/item/book/bible, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/holofloor/dark, /area/template_noop) diff --git a/_maps/templates/lazy_templates/ninja_den.dmm b/_maps/templates/lazy_templates/ninja_den.dmm index 2f625c3b4826..c4ad1b7f74c7 100644 --- a/_maps/templates/lazy_templates/ninja_den.dmm +++ b/_maps/templates/lazy_templates/ninja_den.dmm @@ -101,6 +101,13 @@ }, /turf/open/floor/iron/sepia, /area/centcom/central_command_areas/holding) +"cV" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/sign/poster/contraband/syndicate_recruitment/directional/west, +/turf/open/floor/carpet/black, +/area/centcom/central_command_areas/holding) "cW" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 @@ -120,11 +127,6 @@ "dg" = ( /turf/closed/wall/mineral/wood, /area/centcom/central_command_areas/holding) -"dj" = ( -/obj/structure/table/wood/fancy/royalblack, -/obj/item/storage/book/bible, -/turf/open/floor/wood/large, -/area/centcom/central_command_areas/holding) "dy" = ( /obj/machinery/light/small/directional/west, /turf/open/floor/wood/tile, @@ -159,6 +161,21 @@ /obj/effect/turf_decal/siding/wood, /turf/open/floor/wood/large, /area/centcom/central_command_areas/holding) +"fb" = ( +/obj/structure/closet, +/obj/item/storage/backpack/duffelbag/med/surgery, +/obj/item/reagent_containers/medigel/synthflesh, +/obj/item/reagent_containers/medigel/synthflesh, +/obj/item/reagent_containers/medigel/synthflesh, +/obj/item/organ/internal/heart/cybernetic/tier2, +/obj/item/organ/internal/heart/cybernetic/tier2, +/obj/item/defibrillator, +/obj/item/surgery_tray, +/obj/machinery/iv_drip, +/obj/item/emergency_bed, +/obj/item/storage/medkit/regular, +/turf/open/floor/iron/sepia, +/area/centcom/central_command_areas/holding) "fj" = ( /obj/machinery/light/directional/north, /turf/open/floor/bamboo/tatami/purple{ @@ -785,6 +802,22 @@ }, /turf/open/floor/stone, /area/centcom/central_command_areas/holding) +"tj" = ( +/obj/item/storage/backpack/duffelbag/med/surgery, +/obj/machinery/iv_drip, +/obj/item/storage/medkit/regular, +/obj/item/defibrillator, +/obj/structure/closet, +/obj/item/surgery_tray, +/obj/item/emergency_bed, +/obj/item/storage/medkit/regular, +/obj/item/reagent_containers/medigel/synthflesh, +/obj/item/reagent_containers/medigel/synthflesh, +/obj/item/reagent_containers/medigel/synthflesh, +/obj/item/organ/internal/heart/cybernetic/tier2, +/obj/item/organ/internal/heart/cybernetic/tier2, +/turf/open/floor/iron/sepia, +/area/centcom/central_command_areas/holding) "ts" = ( /obj/item/food/meat/slab/chicken, /obj/item/food/meat/slab/chicken, @@ -1127,13 +1160,6 @@ }, /turf/open/floor/iron/cafeteria, /area/centcom/central_command_areas/holding) -"BN" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/structure/sign/poster/contraband/syndicate_recruitment/directional/west, -/turf/open/floor/carpet/black, -/area/centcom/central_command_areas/holding) "Ca" = ( /obj/structure/chair/comfy/black{ dir = 8 @@ -1215,22 +1241,6 @@ "DI" = ( /turf/open/floor/iron/sepia, /area/centcom/central_command_areas/holding) -"DK" = ( -/obj/item/storage/backpack/duffelbag/med/surgery, -/obj/machinery/iv_drip, -/obj/item/storage/medkit/regular, -/obj/item/defibrillator, -/obj/structure/closet, -/obj/item/surgery_tray, -/obj/item/emergency_bed, -/obj/item/storage/medkit/regular, -/obj/item/reagent_containers/medigel/synthflesh, -/obj/item/reagent_containers/medigel/synthflesh, -/obj/item/reagent_containers/medigel/synthflesh, -/obj/item/organ/internal/heart/cybernetic/tier2, -/obj/item/organ/internal/heart/cybernetic/tier2, -/turf/open/floor/iron/sepia, -/area/centcom/central_command_areas/holding) "DL" = ( /obj/structure/chair/wood{ dir = 4 @@ -1276,6 +1286,11 @@ initial_gas_mix = "o2=22;n2=82;TEMP=293.15" }, /area/centcom/central_command_areas/holding) +"EG" = ( +/obj/structure/table/wood/fancy/royalblack, +/obj/item/book/bible, +/turf/open/floor/wood/large, +/area/centcom/central_command_areas/holding) "EJ" = ( /obj/item/mop, /obj/structure/sink/kitchen/directional/west, @@ -1633,21 +1648,6 @@ }, /turf/open/floor/iron/cafeteria, /area/centcom/central_command_areas/holding) -"Mz" = ( -/obj/structure/closet, -/obj/item/storage/backpack/duffelbag/med/surgery, -/obj/item/reagent_containers/medigel/synthflesh, -/obj/item/reagent_containers/medigel/synthflesh, -/obj/item/reagent_containers/medigel/synthflesh, -/obj/item/organ/internal/heart/cybernetic/tier2, -/obj/item/organ/internal/heart/cybernetic/tier2, -/obj/item/defibrillator, -/obj/item/surgery_tray, -/obj/machinery/iv_drip, -/obj/item/emergency_bed, -/obj/item/storage/medkit/regular, -/turf/open/floor/iron/sepia, -/area/centcom/central_command_areas/holding) "ML" = ( /obj/structure/window/paperframe{ can_atmos_pass = 0 @@ -3273,7 +3273,7 @@ Lw ML mw mw -BN +cV lI lI mw @@ -3670,7 +3670,7 @@ Ed (39,1,1) = {" Ed CG -dj +EG mw mw mw @@ -3790,7 +3790,7 @@ bl xM qW dg -Mz +fb DI vH dg @@ -3802,7 +3802,7 @@ rV dg aw Wm -DK +tj dg uL hO diff --git a/_maps/~monkestation/RandomBars/Icebox/cultbar_icebox.dmm b/_maps/~monkestation/RandomBars/Icebox/cultbar_icebox.dmm index 7dbd2147836c..dfe06cb3c8d7 100644 --- a/_maps/~monkestation/RandomBars/Icebox/cultbar_icebox.dmm +++ b/_maps/~monkestation/RandomBars/Icebox/cultbar_icebox.dmm @@ -1,4 +1,15 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet/red, +/area/station/service/theater) "aB" = ( /obj/effect/landmark/start/bartender, /turf/open/floor/cult, @@ -22,14 +33,16 @@ }, /turf/open/floor/cult, /area/station/commons/lounge) -"bG" = ( -/obj/structure/window/reinforced/spawner/directional/north, +"cd" = ( +/obj/structure/window/reinforced/spawner/directional/east, /obj/machinery/door/firedoor/border_only{ - dir = 1 + dir = 4 }, -/obj/machinery/computer/slot_machine, -/obj/structure/cable, -/turf/open/floor/cult, +/obj/effect/decal/cleanable/blood/innards, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/carpet/red, /area/station/service/theater) "ce" = ( /obj/structure/table/wood/fancy/red, @@ -108,6 +121,14 @@ /obj/effect/forcefield/cult/permanent, /turf/open/floor/cult, /area/station/service/bar) +"gn" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/carpet/red, +/area/station/service/theater) "gM" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/cult, @@ -134,13 +155,11 @@ /obj/structure/cable, /turf/open/floor/cult, /area/station/service/theater) -"hS" = ( +"hL" = ( /obj/structure/window/reinforced/spawner/directional/east, -/obj/effect/decal/cleanable/blood/gibs/core, /obj/machinery/door/firedoor/border_only{ dir = 4 }, -/obj/structure/disposalpipe/segment, /turf/open/floor/carpet/red, /area/station/service/theater) "in" = ( @@ -155,6 +174,16 @@ }, /turf/open/floor/cult, /area/station/service/bar) +"ip" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/carpet/red, +/area/station/service/theater) "is" = ( /obj/machinery/vending/cigarette, /turf/open/floor/cult, @@ -176,19 +205,20 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/cult, /area/station/service/bar) -"iK" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/window/reinforced/spawner/directional/east, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/carpet/red, -/area/station/service/theater) "iX" = ( /obj/effect/spawner/random/structure/musician/piano/random_piano, /obj/structure/cable, /turf/open/floor/cult, /area/station/service/theater) +"iZ" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/computer/slot_machine, +/obj/structure/cable, +/turf/open/floor/cult, +/area/station/service/theater) "ja" = ( /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/blood/footprints, @@ -224,13 +254,6 @@ /obj/item/radio/intercom/command/directional/east, /turf/open/floor/cult, /area/station/service/bar/backroom) -"lC" = ( -/obj/structure/window/reinforced/spawner/directional/east, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/carpet/red, -/area/station/service/theater) "mo" = ( /obj/effect/landmark/start/hangover, /turf/open/floor/cult, @@ -315,23 +338,21 @@ /obj/machinery/computer/security/telescreen/entertainment/directional/north, /turf/open/floor/cult, /area/station/commons/lounge) +"rl" = ( +/obj/structure/chair/sofa/right/maroon{ + dir = 1; + name = "old bloody sofa" + }, +/obj/machinery/atm/directional/south, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/cult, +/area/station/commons/lounge) "sf" = ( /obj/effect/decal/cleanable/blood/hitsplatter{ dir = 1 }, /turf/open/floor/cult, /area/station/commons/lounge) -"sw" = ( -/obj/structure/window/reinforced/spawner/directional/east, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/innards, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/carpet/red, -/area/station/service/theater) "sz" = ( /obj/structure/chair/sofa/middle/maroon{ dir = 4; @@ -413,14 +434,6 @@ /obj/item/clothing/suit/hooded/cultrobes/berserker, /turf/open/floor/cult, /area/station/service/theater) -"wl" = ( -/obj/structure/window/reinforced/spawner/directional/north, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/computer/slot_machine, -/turf/open/floor/cult, -/area/station/service/theater) "wz" = ( /obj/machinery/door/airlock/cult/friendly, /obj/structure/cable, @@ -483,6 +496,15 @@ /obj/item/kirbyplants/random, /turf/open/floor/cult, /area/station/commons/lounge) +"Aj" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/effect/decal/cleanable/blood/gibs/core, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet/red, +/area/station/service/theater) "Ap" = ( /obj/structure/chair/stool/directional/north{ name = "bloody stool" @@ -515,6 +537,15 @@ /obj/structure/cable, /turf/open/floor/cult, /area/station/service/bar) +"BX" = ( +/obj/structure/table/wood/fancy/red, +/obj/item/vending_refill/cigarette, +/obj/item/book/bible/booze{ + pixel_y = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/cult, +/area/station/service/bar/backroom) "Ca" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -553,15 +584,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/cult, /area/station/service/bar) -"DR" = ( -/obj/structure/chair/sofa/right/maroon{ - dir = 1; - name = "old bloody sofa" - }, -/obj/machinery/atm/directional/south, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/cult, -/area/station/commons/lounge) "DS" = ( /turf/open/floor/cult, /area/station/service/theater) @@ -618,6 +640,14 @@ /obj/item/toy/toy_dagger, /turf/open/floor/cult, /area/station/commons/lounge) +"Hg" = ( +/obj/structure/chair/sofa/corner/maroon{ + dir = 4; + name = "old bloody sofa" + }, +/obj/machinery/atm/directional/north, +/turf/open/floor/cult, +/area/station/commons/lounge) "HO" = ( /obj/structure/table/wood/fancy/red, /obj/item/food/pie/cream{ @@ -699,16 +729,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/cult, /area/station/commons/lounge) -"Kk" = ( -/obj/structure/window/reinforced/spawner/directional/south, -/obj/structure/window/reinforced/spawner/directional/west, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/carpet/red, -/area/station/service/theater) "KB" = ( /obj/structure/table/wood/fancy/red, /obj/item/toy/toy_dagger, @@ -794,14 +814,6 @@ }, /turf/open/floor/cult, /area/station/commons/lounge) -"MS" = ( -/obj/structure/window/reinforced/spawner/directional/north, -/obj/machinery/computer/arcade/amputation, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/cult, -/area/station/service/theater) "Nw" = ( /obj/structure/table/wood/fancy/red, /obj/machinery/reagentgrinder{ @@ -809,14 +821,6 @@ }, /turf/open/floor/cult, /area/station/service/bar) -"Op" = ( -/obj/structure/chair/sofa/corner/maroon{ - dir = 4; - name = "old bloody sofa" - }, -/obj/machinery/atm/directional/north, -/turf/open/floor/cult, -/area/station/commons/lounge) "Ov" = ( /obj/effect/decal/cleanable/blood/tracks{ dir = 8 @@ -872,17 +876,6 @@ /obj/structure/sign/picture_frame/portrait/bar, /turf/closed/wall/mineral/cult, /area/station/service/bar) -"QN" = ( -/obj/structure/window/reinforced/spawner/directional/south, -/obj/structure/window/reinforced/spawner/directional/east, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/structure/disposalpipe/segment, -/turf/open/floor/carpet/red, -/area/station/service/theater) "QV" = ( /obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, @@ -931,6 +924,14 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/cult, /area/station/commons/lounge) +"Tx" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/machinery/computer/arcade/amputation, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/cult, +/area/station/service/theater) "TV" = ( /obj/machinery/suit_storage_unit/open, /obj/item/clothing/suit/hooded/cultrobes/hardened, @@ -980,15 +981,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/cult, /area/station/commons/lounge) -"VW" = ( -/obj/structure/table/wood/fancy/red, -/obj/item/vending_refill/cigarette, -/obj/item/storage/book/bible/booze{ - pixel_y = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/cult, -/area/station/service/bar/backroom) "VX" = ( /obj/machinery/barsign/directional/north, /obj/structure/chair/sofa/corner/maroon{ @@ -1006,6 +998,14 @@ /obj/structure/cable, /turf/open/floor/cult, /area/station/service/bar/backroom) +"WM" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/computer/slot_machine, +/turf/open/floor/cult, +/area/station/service/theater) "WV" = ( /obj/effect/decal/cleanable/blood/footprints{ dir = 8 @@ -1091,7 +1091,7 @@ Fz wk XT DS -MS +Tx Ap Cq US @@ -1105,12 +1105,12 @@ EK ce Ov DS -wl +WM EO Cq US dR -DR +rl "} (4,1,1) = {" EK @@ -1119,7 +1119,7 @@ EK iX oW hy -bG +iZ Io nv do @@ -1133,7 +1133,7 @@ fg fg KD Va -Kk +ip gM Cq Wv @@ -1155,13 +1155,13 @@ EK EK "} (7,1,1) = {" -lC -lC -lC -iK -sw -hS -QN +hL +hL +hL +gn +cd +Aj +aa Jy Zn do @@ -1169,7 +1169,7 @@ do EK "} (8,1,1) = {" -Op +Hg By sf US @@ -1299,7 +1299,7 @@ mX qy aB qR -VW +BX EJ DA RL diff --git a/code/__DEFINES/achievements.dm b/code/__DEFINES/achievements.dm index 0dd53a28315d..6c9ed2dde955 100644 --- a/code/__DEFINES/achievements.dm +++ b/code/__DEFINES/achievements.dm @@ -54,6 +54,7 @@ #define MEDAL_NARSUPREME "Narsupreme" #define MEDAL_SPRINGLOCK "The Man Inside the Modsuit" #define MEDAL_HEALTHY "Heart Healthy" +#define MEDAL_GODS_WRATH "God's Wrath" #define MEDAL_DEBT_EXTINGUISHED "Debt Extinguished" #define MEDAL_ARCHMAGE "Archmage" #define MEDAL_THEORETICAL_LIMITS "All Within Theoretical Limits" diff --git a/code/__DEFINES/is_helpers.dm b/code/__DEFINES/is_helpers.dm index 7ec216cad530..c743a6d5a673 100644 --- a/code/__DEFINES/is_helpers.dm +++ b/code/__DEFINES/is_helpers.dm @@ -286,7 +286,7 @@ GLOBAL_LIST_INIT(glass_sheet_types, typecacheof(list( GLOBAL_LIST_INIT(book_types, typecacheof(list( /obj/item/book, /obj/item/spellbook, - /obj/item/storage/book))) +))) // Jobs #define is_job(job_type) (istype(job_type, /datum/job)) diff --git a/code/datums/achievements/misc_achievements.dm b/code/datums/achievements/misc_achievements.dm index f07a7530b665..1dd537bc4bb0 100644 --- a/code/datums/achievements/misc_achievements.dm +++ b/code/datums/achievements/misc_achievements.dm @@ -213,3 +213,8 @@ database_id = MEDAL_DEBT_EXTINGUISHED icon = "outdebted" +/datum/award/achievement/misc/gods_wrath + name = "God's Wrath" + desc = "Did you think you could get away with defiling the word of God?" + database_id = MEDAL_GODS_WRATH + icon = "godswrath" diff --git a/code/datums/components/crafting/tailoring.dm b/code/datums/components/crafting/tailoring.dm index 7adc8e99dfa6..77b056e82354 100644 --- a/code/datums/components/crafting/tailoring.dm +++ b/code/datums/components/crafting/tailoring.dm @@ -268,7 +268,7 @@ time = 1 SECONDS tool_paths = list( /obj/item/clothing/suit/hooded/chaplain_hoodie, - /obj/item/storage/book/bible, + /obj/item/book/bible, ) reqs = list(/obj/item/stack/sheet/cloth = 4) category = CAT_CLOTHING diff --git a/code/datums/components/omen.dm b/code/datums/components/omen.dm index d218729aea07..d7ea8b18c6f2 100644 --- a/code/datums/components/omen.dm +++ b/code/datums/components/omen.dm @@ -17,11 +17,18 @@ /// Base damage from negative events. Cursed take 25% less damage. var/damage_mod = 1 -/datum/component/omen/Initialize(vessel) +/datum/component/omen/Initialize(obj/vessel, permanent, luck_mod, damage_mod) if(!isliving(parent)) return COMPONENT_INCOMPATIBLE - src.vessel = vessel + if(istype(vessel)) + src.vessel = vessel + RegisterSignal(vessel, COMSIG_QDELETING, PROC_REF(vessel_qdeleting)) + src.permanent = permanent + if(!isnull(luck_mod)) + src.luck_mod = luck_mod + if(!isnull(damage_mod)) + src.damage_mod = damage_mod /datum/component/omen/Destroy(force) var/mob/living/person = parent @@ -29,6 +36,8 @@ if(vessel) vessel.visible_message(span_warning("[vessel] burns up in a sinister flash, taking an evil energy with it...")) + UnregisterSignal(vessel, COMSIG_QDELETING) + vessel.burn() vessel = null return ..() @@ -53,8 +62,8 @@ if(!isliving(our_guy)) return - var/mob/living/living_guy = our_guy + var/mob/living/living_guy = our_guy if(!prob(15 * luck_mod)) return @@ -124,7 +133,10 @@ /datum/component/omen/proc/check_bless(mob/living/our_guy, category) SIGNAL_HANDLER - if (!("blessing" in our_guy.mob_mood.mood_events)) + if(permanent) + return + + if(!("blessing" in our_guy.mob_mood.mood_events)) return qdel(src) @@ -133,6 +145,9 @@ /datum/component/omen/proc/check_death(mob/living/our_guy) SIGNAL_HANDLER + if(permanent) + return + qdel(src) /// Creates a localized explosion that shakes the camera @@ -142,21 +157,18 @@ for(var/mob/witness in view(2, our_guy)) shake_camera(witness, 1 SECONDS, 2) +/// Vessel got deleted, set it to null +/datum/component/omen/proc/vessel_qdeleting(atom/source) + SIGNAL_HANDLER + + UnregisterSignal(vessel, COMSIG_QDELETING) + vessel = null + /** * The smite omen. Permanent. */ /datum/component/omen/smite -/datum/component/omen/smite/Initialize(vessel, permanent) - . = ..() - src.permanent = permanent - -/datum/component/omen/smite/check_bless(mob/living/our_guy, category) - if(!permanent) - return ..() - - return - /datum/component/omen/smite/check_death(mob/living/our_guy) if(!permanent) return ..() @@ -198,3 +210,22 @@ player.spawn_gibs() return + +/** + * The bible omen. + * While it lasts, parent gets a cursed aura filter. + */ +/datum/component/omen/bible + +/datum/component/omen/bible/RegisterWithParent() + . = ..() + var/mob/living/living_parent = parent + living_parent.add_filter("omen", 2, list("type" = "drop_shadow", "color" = COLOR_DARK_RED, "alpha" = 0, "size" = 2)) + var/filter = living_parent.get_filter("omen") + animate(filter, alpha = 255, time = 2 SECONDS, loop = -1) + animate(alpha = 0, time = 2 SECONDS) + +/datum/component/omen/bible/UnregisterFromParent() + . = ..() + var/mob/living/living_parent = parent + living_parent.remove_filter("omen") diff --git a/code/datums/components/religious_tool.dm b/code/datums/components/religious_tool.dm index c089c26ffda4..3297cc73da83 100644 --- a/code/datums/components/religious_tool.dm +++ b/code/datums/components/religious_tool.dm @@ -14,7 +14,7 @@ /// The rite currently being invoked var/datum/religion_rites/performing_rite ///Sets the type for catalyst - var/catalyst_type = /obj/item/storage/book/bible + var/catalyst_type = /obj/item/book/bible ///Enables overide of COMPONENT_NO_AFTERATTACK, not recommended as it means you can potentially cause damage to the item using the catalyst. var/force_catalyst_afterattack = FALSE var/datum/callback/after_sect_select_cb diff --git a/code/datums/memory/general_memories.dm b/code/datums/memory/general_memories.dm index 1085625545da..c71014b63b46 100644 --- a/code/datums/memory/general_memories.dm +++ b/code/datums/memory/general_memories.dm @@ -926,3 +926,49 @@ "[antagonist_name] acts just a bit too friendly with [protagonist_name], moments away from converting them into a blood brother.", "[protagonist_name] is brought into [antagonist_name]'s life of crime and espionage.", ) + +/// Saw someone play Russian Roulette. +/datum/memory/witnessed_gods_wrath + memory_flags = MEMORY_CHECK_BLINDNESS|MEMORY_SKIP_UNCONSCIOUS + story_value = STORY_VALUE_AMAZING + +/datum/memory/witnessed_gods_wrath/New( + datum/mind/memorizer_mind, + atom/protagonist, + atom/deuteragonist, + atom/antagonist, +) + +/datum/memory/witnessed_gods_wrath/get_names() + return list("[protagonist_name] suffering the wrath of [antagonist_name].") + +/datum/memory/witnessed_gods_wrath/get_starts() + return list( + "[protagonist_name] burns [deuteragonist_name], and [antagonist_name] turns [protagonist_name] into a fine red mist.", + "[antagonist_name] explodes [protagonist_name] into a million pieces for defiling [deuteragonist_name].", + "[protagonist_name] angers [antagonist_name] by defiling [deuteragonist_name], and gets obliterated.", + ) + +/datum/memory/witnessed_gods_wrath/get_moods() + return list("[protagonist_name] [mood_verb] as they get annihilated by [antagonist_name].") + +/datum/memory/witnessed_gods_wrath/get_happy_moods() + return list( + "cackles hysterically", + "laughs maniacally", + "grins widely", + ) + +/datum/memory/witnessed_gods_wrath/get_neutral_moods() + return list( + "appears concerned", + "reconsiders their life decisions", + "has a blank expression", + ) + +/datum/memory/witnessed_gods_wrath/get_sad_moods() + return list( + "appears dejected", + "is filled with regret", + "winces in despair" + ) diff --git a/code/datums/quirks/positive_quirks.dm b/code/datums/quirks/positive_quirks.dm index 31b7bf47ae6a..6f3db54bac8a 100644 --- a/code/datums/quirks/positive_quirks.dm +++ b/code/datums/quirks/positive_quirks.dm @@ -292,7 +292,7 @@ lose_text = span_danger("You lose faith!") medical_record_text = "Patient reports a belief in a higher power." mail_goodies = list( - /obj/item/storage/book/bible/booze, + /obj/item/book/bible/booze, /obj/item/reagent_containers/cup/glass/bottle/holywater, /obj/item/bedsheet/chaplain, /obj/item/toy/cards/deck/tarot, diff --git a/code/game/objects/items/granters/_granters.dm b/code/game/objects/items/granters/_granters.dm index 8cb63925f240..ad9b9a453f05 100644 --- a/code/game/objects/items/granters/_granters.dm +++ b/code/game/objects/items/granters/_granters.dm @@ -5,7 +5,7 @@ */ /obj/item/book/granter due_date = 0 - unique = 1 + unique = TRUE /// Flavor messages displayed to mobs reading the granter var/list/remarks = list() /// Controls how long a mob must keep the book in his hand to actually successfully learn diff --git a/code/game/objects/items/storage/bags.dm b/code/game/objects/items/storage/bags.dm index b7ed0f796e77..4fd204f97cb6 100644 --- a/code/game/objects/items/storage/bags.dm +++ b/code/game/objects/items/storage/bags.dm @@ -328,7 +328,7 @@ atom_storage.set_holdable(list( /obj/item/book, /obj/item/spellbook, - /obj/item/storage/book, //TG#75350 Refactors these to be just /obj/item/book, but it also add burning bibles. May look back at it another time + /obj/item/book, /obj/item/poster, )) diff --git a/code/game/objects/items/storage/book.dm b/code/game/objects/items/storage/book.dm deleted file mode 100644 index 9622a103ab5b..000000000000 --- a/code/game/objects/items/storage/book.dm +++ /dev/null @@ -1,306 +0,0 @@ -/obj/item/storage/book - name = "hollowed book" - desc = "I guess someone didn't like it." - icon = 'icons/obj/library.dmi' - icon_state ="book" - worn_icon_state = "book" - throw_speed = 2 - throw_range = 5 - w_class = WEIGHT_CLASS_NORMAL - resistance_flags = FLAMMABLE - var/title = "book" - -/obj/item/storage/book/Initialize(mapload) - . = ..() - atom_storage.max_slots = 1 - -/obj/item/storage/book/attack_self(mob/user) - balloon_alert(user, "pages cut out!") - -GLOBAL_LIST_INIT(biblenames, list("Bible", "Quran", "Scrapbook", "Burning Bible", "Clown Bible", "Banana Bible", "Creeper Bible", "White Bible", "Holy Light", "The God Delusion", "Tome", "The King in Yellow", "Ithaqua", "Scientology", "Melted Bible", "Necronomicon", "Insulationism", "Guru Granth Sahib", "Kojiki")) -//If you get these two lists not matching in size, there will be runtimes and I will hurt you in ways you couldn't even begin to imagine -// if your bible has no custom itemstate, use one of the existing ones -GLOBAL_LIST_INIT(biblestates, list("bible", "koran", "scrapbook", "burning", "honk1", "honk2", "creeper", "white", "holylight", "atheist", "tome", "kingyellow", "ithaqua", "scientology", "melted", "necronomicon", "insuls", "gurugranthsahib", "kojiki")) -GLOBAL_LIST_INIT(bibleitemstates, list("bible", "koran", "scrapbook", "burning", "honk1", "honk2", "creeper", "white", "holylight", "atheist", "tome", "kingyellow", "ithaqua", "scientology", "melted", "necronomicon", "kingyellow", "gurugranthsahib", "kojiki")) - -/obj/item/storage/book/bible - name = "bible" - desc = "Apply to head repeatedly." - icon = 'icons/obj/storage/book.dmi' - icon_state = "bible" - inhand_icon_state = "bible" - worn_icon_state = "bible" - lefthand_file = 'icons/mob/inhands/items/books_lefthand.dmi' - righthand_file = 'icons/mob/inhands/items/books_righthand.dmi' - var/mob/affecting = null - var/deity_name = "Christ" - force_string = "holy" - -/obj/item/storage/book/bible/examine(mob/user) - . = ..() - if(user?.mind?.holy_role) - if(GLOB.chaplain_altars.len) - . += span_notice("[src] has an expansion pack to replace any broken Altar.") - else - . += span_notice("[src] can be unpacked by hitting the floor of a holy area with it.") - -/obj/item/storage/book/bible/Initialize(mapload) - . = ..() - atom_storage.max_specific_storage = WEIGHT_CLASS_SMALL - AddComponent(/datum/component/anti_magic, MAGIC_RESISTANCE_HOLY) - -/obj/item/storage/book/bible/suicide_act(mob/living/user) - user.visible_message(span_suicide("[user] is offering [user.p_them()]self to [deity_name]! It looks like [user.p_theyre()] trying to commit suicide!")) - return BRUTELOSS - -/obj/item/storage/book/bible/attack_self(mob/living/carbon/human/user) - if(GLOB.bible_icon_state) - return FALSE - if(user?.mind?.holy_role != HOLY_ROLE_HIGHPRIEST) - return FALSE - - var/list/skins = list() - for(var/i in 1 to GLOB.biblestates.len) - var/image/bible_image = image(icon = 'icons/obj/storage/book.dmi', icon_state = GLOB.biblestates[i]) - skins += list("[GLOB.biblenames[i]]" = bible_image) - - var/choice = show_radial_menu(user, src, skins, custom_check = CALLBACK(src, PROC_REF(check_menu), user), radius = 40, require_near = TRUE) - if(!choice) - return FALSE - var/bible_index = GLOB.biblenames.Find(choice) - if(!bible_index) - return FALSE - icon_state = GLOB.biblestates[bible_index] - inhand_icon_state = GLOB.bibleitemstates[bible_index] - - switch(icon_state) - if("honk1") - user.dna.add_mutation(/datum/mutation/human/clumsy) - user.equip_to_slot_or_del(new /obj/item/clothing/mask/gas/clown_hat(user), ITEM_SLOT_MASK) - AddComponent(/datum/component/slippery, 40) //Same as a synthesized banana peel. - if("honk2") - user.dna.add_mutation(/datum/mutation/human/clumsy) - user.equip_to_slot_or_del(new /obj/item/clothing/mask/gas/clown_hat(user), ITEM_SLOT_MASK) - AddComponent(/datum/component/slippery, 40) //Same as a synthesized banana peel. - if("insuls") - var/obj/item/clothing/gloves/color/fyellow/insuls = new - insuls.name = "insuls" - insuls.desc = "A mere copy of the true insuls." - insuls.siemens_coefficient = 0.99999 - user.equip_to_slot(insuls, ITEM_SLOT_GLOVES) - GLOB.bible_icon_state = icon_state - GLOB.bible_inhand_icon_state = inhand_icon_state - SSblackbox.record_feedback("text", "religion_book", 1, "[choice]") - -/** - * Checks if we are allowed to interact with a radial menu - * - * Arguments: - * * user The mob interacting with the menu - */ -/obj/item/storage/book/bible/proc/check_menu(mob/living/carbon/human/user) - if(GLOB.bible_icon_state) - return FALSE - if(!istype(user) || !user.is_holding(src)) - return FALSE - if(user.incapacitated()) - return FALSE - if(user.mind?.holy_role != HOLY_ROLE_HIGHPRIEST) - return FALSE - return TRUE - -/obj/item/storage/book/bible/proc/make_new_altar(atom/bible_smacked, mob/user) - var/new_altar_area = get_turf(bible_smacked) - - balloon_alert(user, "unpacking bible...") - if(!do_after(user, 15 SECONDS, new_altar_area)) - return - new /obj/structure/altar_of_gods(new_altar_area) - qdel(src) - -/obj/item/storage/book/bible/proc/bless(mob/living/L, mob/living/user) - if(GLOB.religious_sect) - return GLOB.religious_sect.sect_bless(L,user) - if(!ishuman(L)) - return - var/mob/living/carbon/human/H = L - for(var/obj/item/bodypart/bodypart as anything in H.bodyparts) - if(!IS_ORGANIC_LIMB(bodypart)) - balloon_alert(user, "can't heal metal!") - return 0 - - var/heal_amt = 10 - var/list/hurt_limbs = H.get_damaged_bodyparts(1, 1, BODYTYPE_ORGANIC) - - if(hurt_limbs.len) - for(var/X in hurt_limbs) - var/obj/item/bodypart/affecting = X - if(affecting.heal_damage(heal_amt, heal_amt, BODYTYPE_ORGANIC)) - H.update_damage_overlays() - H.visible_message(span_notice("[user] heals [H] with the power of [deity_name]!")) - to_chat(H, span_boldnotice("May the power of [deity_name] compel you to be healed!")) - playsound(src.loc, SFX_PUNCH, 25, TRUE, -1) - H.add_mood_event("blessing", /datum/mood_event/blessing) - return TRUE - -/obj/item/storage/book/bible/attack(mob/living/M, mob/living/carbon/human/user, heal_mode = TRUE) - - if (!ISADVANCEDTOOLUSER(user)) - balloon_alert(user, "not dextrous enough!") - return - - if (HAS_TRAIT(user, TRAIT_CLUMSY) && prob(50)) - to_chat(user, span_danger("[src] slips out of your hand and hits your head.")) - user.take_bodypart_damage(10) - user.Unconscious(40 SECONDS) - return - - if (!user.mind || !user.mind.holy_role) - to_chat(user, span_danger("The book sizzles in your hands.")) - user.take_bodypart_damage(0, 10) - return - - if (!heal_mode) - return ..() - - if (M.stat == DEAD) - M.visible_message(span_danger("[user] smacks [M]'s lifeless corpse with [src].")) - playsound(src.loc, SFX_PUNCH, 25, TRUE, -1) - return - - if(user == M) - balloon_alert(user, "can't heal yourself!") - return - - var/smack = TRUE - - if(prob(60) && bless(M, user)) - smack = FALSE - else if(iscarbon(M)) - var/mob/living/carbon/C = M - if(!istype(C.head, /obj/item/clothing/head/helmet)) - C.adjustOrganLoss(ORGAN_SLOT_BRAIN, 5, 60) - C.balloon_alert(C, "you feel dumber") - - if(smack) - M.visible_message(span_danger("[user] beats [M] over the head with [src]!"), \ - span_userdanger("[user] beats [M] over the head with [src]!")) - playsound(src.loc, SFX_PUNCH, 25, TRUE, -1) - log_combat(user, M, "attacked", src) - -/obj/item/storage/book/bible/attackby_storage_insert(datum/storage, atom/storage_holder, mob/user) - return !istype(storage_holder, /obj/item/storage/book/bible) - -/obj/item/storage/book/bible/afterattack(atom/bible_smacked, mob/user, proximity) - . = ..() - if(!proximity) - return - if(SEND_SIGNAL(bible_smacked, COMSIG_BIBLE_SMACKED, user, proximity) & COMSIG_END_BIBLE_CHAIN) - return . | AFTERATTACK_PROCESSED_ITEM - if(isfloorturf(bible_smacked)) - if(user.mind && (user.mind.holy_role)) - var/area/current_area = get_area(bible_smacked) - if(!GLOB.chaplain_altars.len && istype(current_area, /area/station/service/chapel)) - make_new_altar(bible_smacked, user) - return - for(var/obj/effect/rune/nearby_runes in orange(2,user)) - nearby_runes.invisibility = 0 - bible_smacked.balloon_alert(user, "floor smacked") - - if(user?.mind?.holy_role) - if(bible_smacked.reagents && bible_smacked.reagents.has_reagent(/datum/reagent/water)) // blesses all the water in the holder - . |= AFTERATTACK_PROCESSED_ITEM - bible_smacked.balloon_alert(user, "blessed") - var/water2holy = bible_smacked.reagents.get_reagent_amount(/datum/reagent/water) - bible_smacked.reagents.del_reagent(/datum/reagent/water) - bible_smacked.reagents.add_reagent(/datum/reagent/water/holywater,water2holy) - if(bible_smacked.reagents && bible_smacked.reagents.has_reagent(/datum/reagent/fuel/unholywater)) // yeah yeah, copy pasted code - sue me - . |= AFTERATTACK_PROCESSED_ITEM - bible_smacked.balloon_alert(user, "purified") - var/unholy2clean = bible_smacked.reagents.get_reagent_amount(/datum/reagent/fuel/unholywater) - bible_smacked.reagents.del_reagent(/datum/reagent/fuel/unholywater) - bible_smacked.reagents.add_reagent(/datum/reagent/water/holywater,unholy2clean) - if(istype(bible_smacked, /obj/item/storage/book/bible) && !istype(bible_smacked, /obj/item/storage/book/bible/syndicate)) - . |= AFTERATTACK_PROCESSED_ITEM - bible_smacked.balloon_alert(user, "converted") - var/obj/item/storage/book/bible/B = bible_smacked - B.name = name - B.icon_state = icon_state - B.inhand_icon_state = inhand_icon_state - - if(istype(bible_smacked, /obj/item/cult_bastard) && !IS_CULTIST(user)) - . |= AFTERATTACK_PROCESSED_ITEM - var/obj/item/cult_bastard/sword = bible_smacked - bible_smacked.balloon_alert(user, "exorcising...") - playsound(src,'sound/hallucinations/veryfar_noise.ogg',40,TRUE) - if(do_after(user, 40, target = sword)) - playsound(src,'sound/effects/pray_chaplain.ogg',60,TRUE) - for(var/obj/item/soulstone/SS in sword.contents) - SS.required_role = null - for(var/mob/living/basic/shade/EX in SS) - var/datum/antagonist/cult/cultist = EX.mind.has_antag_datum(/datum/antagonist/cult) - if (cultist) - cultist.silent = TRUE - cultist.on_removal() - - EX.icon_state = "shade_holy" - EX.name = "Purified [EX.name]" - SS.release_shades(user) - qdel(SS) - new /obj/item/nullrod/claymore(get_turf(sword)) - user.visible_message(span_notice("[user] purifies [sword]!")) - qdel(sword) - -/obj/item/storage/book/bible/booze - desc = "To be applied to the head repeatedly." - -/obj/item/storage/book/bible/booze/PopulateContents() - new /obj/item/reagent_containers/cup/glass/bottle/whiskey(src) - -/obj/item/storage/book/bible/syndicate - icon_state ="ebook" - deity_name = "The Syndicate" - throw_speed = 2 - throwforce = 18 - throw_range = 7 - force = 18 - hitsound = 'sound/weapons/sear.ogg' - damtype = BURN - name = "Syndicate Tome" - attack_verb_continuous = list("attacks", "burns", "blesses", "damns", "scorches") - attack_verb_simple = list("attack", "burn", "bless", "damn", "scorch") - item_flags = NO_BLOOD_ON_ITEM - var/uses = 1 - var/ownername - -/obj/item/book/bible/syndicate/Initialize(mapload) - . = ..() - AddComponent(/datum/component/anti_magic, MAGIC_RESISTANCE|MAGIC_RESISTANCE_HOLY) - AddComponent(/datum/component/effect_remover, \ - success_feedback = "You disrupt the magic of %THEEFFECT with %THEWEAPON.", \ - success_forcesay = "BEGONE FOUL MAGIKS!!", \ - tip_text = "Clear rune", \ - effects_we_clear = list(/obj/effect/rune, /obj/effect/heretic_rune, /obj/effect/cosmic_rune), \ - ) - AddElement(/datum/element/bane, target_type = /mob/living/basic/revenant, damage_multiplier = 0, added_damage = 25, requires_combat_mode = FALSE) - -/obj/item/storage/book/bible/syndicate/attack_self(mob/living/carbon/human/H) - if (uses) - H.mind.holy_role = HOLY_ROLE_PRIEST - uses -= 1 - to_chat(H, span_userdanger("You try to open the book AND IT BITES YOU!")) - playsound(src.loc, 'sound/effects/snap.ogg', 50, TRUE) - H.apply_damage(5, BRUTE, pick(BODY_ZONE_L_ARM, BODY_ZONE_R_ARM)) - to_chat(H, span_notice("Your name appears on the inside cover, in blood.")) - ownername = H.real_name - -/obj/item/storage/book/bible/syndicate/examine(mob/user) - . = ..() - if(ownername) - . += span_warning("The name [ownername] is written in blood inside the cover.") - -/obj/item/storage/book/bible/syndicate/attack(mob/living/M, mob/living/carbon/human/user, heal_mode = TRUE) - if (!(user.istate & ISTATE_HARM)) - return ..() - else - return ..(M,user,heal_mode = FALSE) diff --git a/code/modules/admin/smites/bad_luck.dm b/code/modules/admin/smites/bad_luck.dm index a5c00aea43d9..c9f6a94b93a0 100644 --- a/code/modules/admin/smites/bad_luck.dm +++ b/code/modules/admin/smites/bad_luck.dm @@ -14,8 +14,11 @@ /datum/smite/bad_luck/effect(client/user, mob/living/target) . = ..() + //if permanent, replace any existing omen + if(permanent) + var/existing_component = target.GetComponent(/datum/component/omen) + qdel(existing_component) target.AddComponent(/datum/component/omen/smite, permanent = permanent) - if(silent) return to_chat(target, span_warning("You get a bad feeling...")) diff --git a/code/modules/antagonists/revenant/haunted_item.dm b/code/modules/antagonists/revenant/haunted_item.dm index 3b388159dd4c..642002976cb6 100644 --- a/code/modules/antagonists/revenant/haunted_item.dm +++ b/code/modules/antagonists/revenant/haunted_item.dm @@ -61,7 +61,7 @@ pre_haunt_throwforce = haunted_item.throwforce haunted_item.throwforce = min(haunted_item.throwforce + throw_force_bonus, throw_force_max) - var/static/list/default_dispell_types = list(/obj/item/nullrod, /obj/item/storage/book/bible) + var/static/list/default_dispell_types = list(/obj/item/nullrod, /obj/item/book/bible) src.types_which_dispell_us = types_which_dispell_us || default_dispell_types src.despawn_message = despawn_message diff --git a/code/modules/asset_cache/assets/bibles.dm b/code/modules/asset_cache/assets/bibles.dm index d99a6e26feb9..948af216063f 100644 --- a/code/modules/asset_cache/assets/bibles.dm +++ b/code/modules/asset_cache/assets/bibles.dm @@ -2,7 +2,7 @@ name = "bibles" /datum/asset/spritesheet/bibles/create_spritesheets() - var/obj/item/storage/book/bible/holy_template = /obj/item/storage/book/bible + var/obj/item/book/bible/holy_template = /obj/item/book/bible InsertAll("display", initial(holy_template.icon)) /datum/asset/spritesheet/bibles/ModifyInserted(icon/pre_asset) diff --git a/code/modules/awaymissions/mission_code/stationCollision.dm b/code/modules/awaymissions/mission_code/stationCollision.dm index 414484c6dcf4..b0f31eaa6698 100644 --- a/code/modules/awaymissions/mission_code/stationCollision.dm +++ b/code/modules/awaymissions/mission_code/stationCollision.dm @@ -23,16 +23,16 @@ name = "Safecode hint spawner" /obj/effect/landmark/sc_bible_spawner/Initialize(mapload) - ..() - var/obj/item/storage/book/bible/B = new /obj/item/storage/book/bible/booze(loc) - B.name = "The Holy book of the Geometer" - B.deity_name = "Narsie" - B.icon_state = "melted" - B.inhand_icon_state = "melted" - B.lefthand_file = 'icons/mob/inhands/items/books_lefthand.dmi' - B.righthand_file = 'icons/mob/inhands/items/books_righthand.dmi' - new /obj/item/paper/fluff/awaymissions/stationcollision/safehint_paper_bible(B) - new /obj/item/pen(B) + . = ..() + var/obj/item/book/bible/holy_bible = new /obj/item/book/bible/booze(loc) + holy_bible.name = "The Holy book of the Geometer" + holy_bible.deity_name = "Narsie" + holy_bible.icon_state = "melted" + holy_bible.inhand_icon_state = "melted" + holy_bible.lefthand_file = 'icons/mob/inhands/items/books_lefthand.dmi' + holy_bible.righthand_file = 'icons/mob/inhands/items/books_righthand.dmi' + new /obj/item/paper/fluff/awaymissions/stationcollision/safehint_paper_bible(holy_bible) + new /obj/item/pen(holy_bible) return INITIALIZE_HINT_QDEL /* diff --git a/code/modules/cargo/packs/general.dm b/code/modules/cargo/packs/general.dm index fd3667a44132..f07b9c0973cc 100644 --- a/code/modules/cargo/packs/general.dm +++ b/code/modules/cargo/packs/general.dm @@ -213,7 +213,7 @@ cargo bay. Contains two bottles of holywater, bibles, chaplain robes, and burial garmets." cost = CARGO_CRATE_VALUE * 6 // it costs so much because the Space Church needs funding to build a cathedral contains = list(/obj/item/reagent_containers/cup/glass/bottle/holywater = 2, - /obj/item/storage/book/bible/booze = 2, + /obj/item/book/bible/booze = 2, /obj/item/clothing/suit/hooded/chaplain_hoodie = 2, /obj/item/clothing/under/misc/burial = 2, ) diff --git a/code/modules/clothing/suits/bio.dm b/code/modules/clothing/suits/bio.dm index 83efcbcda8d9..4543014ae7a8 100644 --- a/code/modules/clothing/suits/bio.dm +++ b/code/modules/clothing/suits/bio.dm @@ -133,4 +133,4 @@ /obj/item/clothing/suit/bio_suit/plaguedoctorsuit/Initialize(mapload) . = ..() - allowed += list(/obj/item/storage/book/bible, /obj/item/nullrod, /obj/item/cane) + allowed += list(/obj/item/book/bible, /obj/item/nullrod, /obj/item/cane) diff --git a/code/modules/clothing/suits/costume.dm b/code/modules/clothing/suits/costume.dm index 466ac74dff34..eb99688de85e 100644 --- a/code/modules/clothing/suits/costume.dm +++ b/code/modules/clothing/suits/costume.dm @@ -127,7 +127,7 @@ inhand_icon_state = "imperium_monk" body_parts_covered = CHEST|GROIN|LEGS|ARMS flags_inv = HIDESHOES|HIDEJUMPSUIT - allowed = list(/obj/item/storage/book/bible, /obj/item/nullrod, /obj/item/reagent_containers/cup/glass/bottle/holywater, /obj/item/storage/fancy/candle_box, /obj/item/flashlight/flare/candle, /obj/item/tank/internals/emergency_oxygen) + allowed = list(/obj/item/book/bible, /obj/item/nullrod, /obj/item/reagent_containers/cup/glass/bottle/holywater, /obj/item/storage/fancy/candle_box, /obj/item/flashlight/flare/candle, /obj/item/tank/internals/emergency_oxygen) /obj/item/clothing/suit/costume/chickensuit name = "chicken suit" @@ -484,7 +484,7 @@ worn_icon = 'icons/mob/clothing/suits/costume.dmi' inhand_icon_state = "mysticrobe" body_parts_covered = CHEST|GROIN|LEGS|ARMS - allowed = list(/obj/item/spellbook, /obj/item/storage/book/bible) + allowed = list(/obj/item/spellbook, /obj/item/book/bible) flags_inv = HIDEJUMPSUIT hoodtype = /obj/item/clothing/head/hooded/mysticrobe diff --git a/code/modules/jobs/job_types/chaplain/chaplain.dm b/code/modules/jobs/job_types/chaplain/chaplain.dm index 37c9d669d6da..803aa0019f95 100644 --- a/code/modules/jobs/job_types/chaplain/chaplain.dm +++ b/code/modules/jobs/job_types/chaplain/chaplain.dm @@ -42,61 +42,59 @@ . = ..() if(!ishuman(spawned)) return - var/mob/living/carbon/human/H = spawned - var/obj/item/storage/book/bible/booze/B = new - + var/mob/living/carbon/human/human_spawned = spawned + var/obj/item/book/bible/booze/holy_bible = new if(GLOB.religion) - if(H.mind) - H.mind.holy_role = HOLY_ROLE_PRIEST - B.deity_name = GLOB.deity - B.name = GLOB.bible_name + if(human_spawned.mind) + human_spawned.mind.holy_role = HOLY_ROLE_PRIEST + holy_bible.deity_name = GLOB.deity + holy_bible.name = GLOB.bible_name // These checks are important as there's no guarantee the "HOLY_ROLE_HIGHPRIEST" chaplain has selected a bible skin. if(GLOB.bible_icon_state) - B.icon_state = GLOB.bible_icon_state + holy_bible.icon_state = GLOB.bible_icon_state if(GLOB.bible_inhand_icon_state) - B.inhand_icon_state = GLOB.bible_inhand_icon_state - to_chat(H, span_boldnotice("There is already an established religion onboard the station. You are an acolyte of [GLOB.deity]. Defer to the Chaplain.")) - H.equip_to_slot_or_del(B, ITEM_SLOT_BACKPACK) + holy_bible.inhand_icon_state = GLOB.bible_inhand_icon_state + to_chat(human_spawned, span_boldnotice("There is already an established religion onboard the station. You are an acolyte of [GLOB.deity]. Defer to the Chaplain.")) + human_spawned.equip_to_slot_or_del(holy_bible, ITEM_SLOT_BACKPACK) var/nrt = GLOB.holy_weapon_type || /obj/item/nullrod - var/obj/item/nullrod/N = new nrt(H) - H.put_in_hands(N) + var/obj/item/nullrod/nullrod = new nrt(human_spawned) + human_spawned.put_in_hands(nullrod) if(GLOB.religious_sect) - GLOB.religious_sect.on_conversion(H) + GLOB.religious_sect.on_conversion(human_spawned) return - if(H.mind) - H.mind.holy_role = HOLY_ROLE_HIGHPRIEST + if(human_spawned.mind) + human_spawned.mind.holy_role = HOLY_ROLE_HIGHPRIEST var/new_religion = player_client?.prefs?.read_preference(/datum/preference/name/religion) || DEFAULT_RELIGION var/new_deity = player_client?.prefs?.read_preference(/datum/preference/name/deity) || DEFAULT_DEITY var/new_bible = player_client?.prefs?.read_preference(/datum/preference/name/bible) || DEFAULT_BIBLE - B.deity_name = new_deity - + holy_bible.deity_name = new_deity switch(lowertext(new_religion)) if("lol", "wtf", "poo", "badmin", "shitmin", "deadmin", "meme", "memes") new_bible = pick("Sweet Bro and Hella Jeff: Expanded Edition","F.A.T.A.L. Rulebook") switch(new_bible) if("Sweet Bro and Hella Jeff: Expanded Edition") - B.deity_name = pick("Sweet Bro", "Hella Jeff", "Stairs", "AH") + holy_bible.deity_name = pick("Sweet Bro", "Hella Jeff", "Stairs", "AH") if("F.A.T.A.L. Rulebook") - B.deity_name = "Twenty Ten-Sided Dice" - H.adjustOrganLoss(ORGAN_SLOT_BRAIN, 100) // also starts off brain damaged as fuck + holy_bible.deity_name = "Twenty Ten-Sided Dice" + human_spawned.adjustOrganLoss(ORGAN_SLOT_BRAIN, 100) // also starts off brain damaged as fuck if("servicianism", "partying") - B.desc = "Happy, Full, Clean. Live it and give it." + holy_bible.desc = "Happy, Full, Clean. Live it and give it." if("weeaboo","kawaii") new_bible = pick("Fanfiction Compendium","Japanese for Dummies","The Manganomicon","Establishing Your O.T.P") - B.deity_name = "Anime" + holy_bible.deity_name = "Anime" else if(new_bible == DEFAULT_BIBLE) new_bible = DEFAULT_BIBLE_REPLACE(new_bible) - B.name = new_bible + holy_bible.name = new_bible GLOB.religion = new_religion GLOB.bible_name = new_bible - GLOB.deity = B.deity_name + GLOB.deity = holy_bible.deity_name - H.equip_to_slot_or_del(B, ITEM_SLOT_BACKPACK) + human_spawned.equip_to_slot_or_del(holy_bible, ITEM_SLOT_BACKPACK) SSblackbox.record_feedback("text", "religion_name", 1, "[new_religion]", 1) SSblackbox.record_feedback("text", "religion_deity", 1, "[new_deity]", 1) diff --git a/code/modules/jobs/job_types/chaplain/chaplain_costumes.dm b/code/modules/jobs/job_types/chaplain/chaplain_costumes.dm index 936c558aebba..c0751b2e3d1b 100644 --- a/code/modules/jobs/job_types/chaplain/chaplain_costumes.dm +++ b/code/modules/jobs/job_types/chaplain/chaplain_costumes.dm @@ -1,7 +1,7 @@ //Chaplain Suit Subtypes //If any new staple chaplain items get added, put them in these lists /obj/item/clothing/suit/chaplainsuit - allowed = list(/obj/item/storage/book/bible, /obj/item/nullrod, /obj/item/reagent_containers/cup/glass/bottle/holywater, /obj/item/storage/fancy/candle_box, /obj/item/flashlight/flare/candle, /obj/item/tank/internals/emergency_oxygen, /obj/item/tank/internals/plasmaman) + allowed = list(/obj/item/book/bible, /obj/item/nullrod, /obj/item/reagent_containers/cup/glass/bottle/holywater, /obj/item/storage/fancy/candle_box, /obj/item/flashlight/flare/candle, /obj/item/tank/internals/emergency_oxygen, /obj/item/tank/internals/plasmaman) icon = 'icons/obj/clothing/suits/chaplain.dmi' worn_icon = 'icons/mob/clothing/suits/chaplain.dmi' @@ -24,7 +24,7 @@ wound = 20 /obj/item/clothing/suit/hooded/chaplainsuit - allowed = list(/obj/item/storage/book/bible, /obj/item/nullrod, /obj/item/reagent_containers/cup/glass/bottle/holywater, /obj/item/storage/fancy/candle_box, /obj/item/flashlight/flare/candle, /obj/item/tank/internals/emergency_oxygen, /obj/item/tank/internals/plasmaman) + allowed = list(/obj/item/book/bible, /obj/item/nullrod, /obj/item/reagent_containers/cup/glass/bottle/holywater, /obj/item/storage/fancy/candle_box, /obj/item/flashlight/flare/candle, /obj/item/tank/internals/emergency_oxygen, /obj/item/tank/internals/plasmaman) //Suits /obj/item/clothing/suit/chaplainsuit/holidaypriest @@ -134,7 +134,7 @@ desc = "It sounds like hissing steam, ticking cogs, gone silent, It looks like a dead machine, trying to tick with life." icon_state = "clockwork_cuirass" inhand_icon_state = null - allowed = list(/obj/item/storage/book/bible, /obj/item/nullrod, /obj/item/reagent_containers/cup/glass/bottle/holywater, /obj/item/storage/fancy/candle_box, /obj/item/flashlight/flare/candle, /obj/item/tank/internals/emergency_oxygen, /obj/item/tank/internals/plasmaman) + allowed = list(/obj/item/book/bible, /obj/item/nullrod, /obj/item/reagent_containers/cup/glass/bottle/holywater, /obj/item/storage/fancy/candle_box, /obj/item/flashlight/flare/candle, /obj/item/tank/internals/emergency_oxygen, /obj/item/tank/internals/plasmaman) slowdown = 0 clothing_flags = NONE @@ -164,7 +164,7 @@ desc = "God wills it!" icon_state = "knight_templar" inhand_icon_state = null - allowed = list(/obj/item/storage/book/bible, /obj/item/nullrod, /obj/item/reagent_containers/cup/glass/bottle/holywater, /obj/item/storage/fancy/candle_box, /obj/item/flashlight/flare/candle, /obj/item/tank/internals/emergency_oxygen, /obj/item/tank/internals/plasmaman) + allowed = list(/obj/item/book/bible, /obj/item/nullrod, /obj/item/reagent_containers/cup/glass/bottle/holywater, /obj/item/storage/fancy/candle_box, /obj/item/flashlight/flare/candle, /obj/item/tank/internals/emergency_oxygen, /obj/item/tank/internals/plasmaman) slowdown = 0 clothing_flags = NONE @@ -242,7 +242,7 @@ worn_icon = 'icons/mob/clothing/suits/chaplain.dmi' inhand_icon_state = null body_parts_covered = CHEST|GROIN|LEGS|ARMS - allowed = list(/obj/item/storage/book/bible, /obj/item/nullrod, /obj/item/reagent_containers/cup/glass/bottle/holywater, /obj/item/storage/fancy/candle_box, /obj/item/flashlight/flare/candle, /obj/item/tank/internals/emergency_oxygen, /obj/item/tank/internals/plasmaman) + allowed = list(/obj/item/book/bible, /obj/item/nullrod, /obj/item/reagent_containers/cup/glass/bottle/holywater, /obj/item/storage/fancy/candle_box, /obj/item/flashlight/flare/candle, /obj/item/tank/internals/emergency_oxygen, /obj/item/tank/internals/plasmaman) hoodtype = /obj/item/clothing/head/hooded/chaplain_hood /obj/item/clothing/head/hooded/chaplain_hood diff --git a/code/modules/library/bibles.dm b/code/modules/library/bibles.dm new file mode 100644 index 000000000000..564104baa9a3 --- /dev/null +++ b/code/modules/library/bibles.dm @@ -0,0 +1,367 @@ +GLOBAL_LIST_INIT(biblenames, list( + "Bible", + "Quran", + "Scrapbook", + "Burning Bible", + "Clown Bible", + "Banana Bible", + "Creeper Bible", + "White Bible", + "Holy Light", + "The God Delusion", + "Tome", + "The King in Yellow", + "Ithaqua", + "Scientology", + "Melted Bible", + "Necronomicon", + "Insulationism", + "Guru Granth Sahib", + "Kojiki", +)) +//If you get these two lists not matching in size, there will be runtimes and I will hurt you in ways you couldn't even begin to imagine +// if your bible has no custom itemstate, use one of the existing ones +GLOBAL_LIST_INIT(biblestates, list( + "bible", + "koran", + "scrapbook", + "burning", + "honk1", + "honk2", + "creeper", + "white", + "holylight", + "atheist", + "tome", + "kingyellow", + "ithaqua", + "scientology", + "melted", + "necronomicon", + "insuls", + "gurugranthsahib", + "kojiki", +)) +GLOBAL_LIST_INIT(bibleitemstates, list( + "bible", + "koran", + "scrapbook", + "burning", + "honk1", + "honk2", + "creeper", + "white", + "holylight", + "atheist", + "tome", + "kingyellow", + "ithaqua", + "scientology", + "melted", + "necronomicon", + "kingyellow", + "gurugranthsahib", + "kojiki", +)) + +/obj/item/book/bible + name = "bible" + desc = "Apply to head repeatedly." + icon = 'icons/obj/storage/book.dmi' + icon_state = "bible" + worn_icon_state = "bible" + inhand_icon_state = "bible" + lefthand_file = 'icons/mob/inhands/items/books_lefthand.dmi' + righthand_file = 'icons/mob/inhands/items/books_righthand.dmi' + force_string = "holy" + unique = TRUE + /// Deity this bible is related to + var/deity_name = "Space Jesus" + +/obj/item/book/bible/Initialize(mapload) + . = ..() + AddComponent(/datum/component/anti_magic, MAGIC_RESISTANCE_HOLY) + carve_out() + +/obj/item/book/bible/examine(mob/user) + . = ..() + if(deity_name) + . += span_notice("This bible has been approved by [deity_name].") + if(user.mind?.holy_role) + if(GLOB.chaplain_altars.len) + . += span_notice("[src] has an expansion pack to replace any broken Altar.") + else + . += span_notice("[src] can be unpacked by hitting the floor of a holy area with it.") + +/obj/item/book/bible/burn_paper_product_attackby_check(obj/item/attacking_item, mob/living/user, bypass_clumsy) + . = ..() + // no deity to cast a curse upon thee + if(!deity_name) + return + if(. && (resistance_flags & ON_FIRE)) + var/datum/component/omen/existing_omen = user.GetComponent(/datum/component/omen) + //DOUBLE CURSED?! Just straight up gib the guy. + if(existing_omen) + to_chat(user, span_userdanger("[deity_name] SMITE thee!")) + add_memory_in_range(user, 7, /datum/memory/witnessed_gods_wrath, protagonist = user, deuteragonist = src, antagonist = deity_name) + user.client?.give_award(/datum/award/achievement/misc/gods_wrath, user) + user.gib() + else + to_chat(user, span_userdanger("[deity_name] cast a curse upon thee!")) + user.AddComponent(/datum/component/omen/bible) + +/obj/item/book/bible/carve_out(obj/item/carving_item, mob/living/user) + . = ..() + atom_storage.max_specific_storage = WEIGHT_CLASS_SMALL + +/obj/item/book/bible/suicide_act(mob/living/user) + user.visible_message(span_suicide("[user] is offering [user.p_them()]self to [deity_name]! It looks like [user.p_theyre()] trying to commit suicide!")) + return BRUTELOSS + +/obj/item/book/bible/attack_self(mob/living/carbon/human/user) + if(GLOB.bible_icon_state) + return FALSE + if(user?.mind?.holy_role != HOLY_ROLE_HIGHPRIEST) + return FALSE + + var/list/skins = list() + for(var/i in 1 to GLOB.biblestates.len) + var/image/bible_image = image(icon = 'icons/obj/storage/book.dmi', icon_state = GLOB.biblestates[i]) + skins += list("[GLOB.biblenames[i]]" = bible_image) + + var/choice = show_radial_menu(user, src, skins, custom_check = CALLBACK(src, PROC_REF(check_menu), user), radius = 40, require_near = TRUE) + if(!choice) + return FALSE + var/bible_index = GLOB.biblenames.Find(choice) + if(!bible_index) + return FALSE + icon_state = GLOB.biblestates[bible_index] + inhand_icon_state = GLOB.bibleitemstates[bible_index] + + switch(icon_state) + if("honk1") + user.dna.add_mutation(/datum/mutation/human/clumsy) + user.equip_to_slot_or_del(new /obj/item/clothing/mask/gas/clown_hat(user), ITEM_SLOT_MASK) + AddComponent(/datum/component/slippery, 40) //Same as a synthesized banana peel. + if("honk2") + user.dna.add_mutation(/datum/mutation/human/clumsy) + user.equip_to_slot_or_del(new /obj/item/clothing/mask/gas/clown_hat(user), ITEM_SLOT_MASK) + AddComponent(/datum/component/slippery, 40) //Same as a synthesized banana peel. + if("insuls") + var/obj/item/clothing/gloves/color/fyellow/insuls = new + insuls.name = "insuls" + insuls.desc = "A mere copy of the true insuls." + insuls.siemens_coefficient = 0.99999 + user.equip_to_slot(insuls, ITEM_SLOT_GLOVES) + GLOB.bible_icon_state = icon_state + GLOB.bible_inhand_icon_state = inhand_icon_state + SSblackbox.record_feedback("text", "religion_book", 1, "[choice]") + +/** + * Checks if we are allowed to interact with a radial menu + * + * Arguments: + * * user The mob interacting with the menu + */ +/obj/item/book/bible/proc/check_menu(mob/living/carbon/human/user) + if(GLOB.bible_icon_state) + return FALSE + if(!istype(user) || !user.is_holding(src)) + return FALSE + if(user.incapacitated()) + return FALSE + if(user.mind?.holy_role != HOLY_ROLE_HIGHPRIEST) + return FALSE + return TRUE + +/obj/item/book/bible/proc/make_new_altar(atom/bible_smacked, mob/user) + var/new_altar_area = get_turf(bible_smacked) + + balloon_alert(user, "unpacking bible...") + if(!do_after(user, 15 SECONDS, new_altar_area)) + return + new /obj/structure/altar_of_gods(new_altar_area) + qdel(src) + +/obj/item/book/bible/proc/bless(mob/living/blessed, mob/living/user) + if(GLOB.religious_sect) + return GLOB.religious_sect.sect_bless(blessed,user) + if(!ishuman(blessed)) + return + var/mob/living/carbon/human/built_in_his_image = blessed + for(var/obj/item/bodypart/bodypart as anything in built_in_his_image.bodyparts) + if(!IS_ORGANIC_LIMB(bodypart)) + balloon_alert(user, "can't heal metal!") + return FALSE + + var/heal_amt = 10 + var/list/hurt_limbs = built_in_his_image.get_damaged_bodyparts(1, 1, BODYTYPE_ORGANIC) + if(length(hurt_limbs)) + for(var/obj/item/bodypart/affecting as anything in hurt_limbs) + if(affecting.heal_damage(heal_amt, heal_amt, BODYTYPE_ORGANIC)) + built_in_his_image.update_damage_overlays() + built_in_his_image.visible_message(span_notice("[user] heals [built_in_his_image] with the power of [deity_name]!")) + to_chat(built_in_his_image, span_boldnotice("May the power of [deity_name] compel you to be healed!")) + playsound(built_in_his_image, SFX_PUNCH, 25, TRUE, -1) + built_in_his_image.add_mood_event("blessing", /datum/mood_event/blessing) + return TRUE + +/obj/item/book/bible/attack(mob/living/target_mob, mob/living/carbon/human/user, params, heal_mode = TRUE) + if(!ISADVANCEDTOOLUSER(user)) + balloon_alert(user, "not dextrous enough!") + return + + if(HAS_TRAIT(user, TRAIT_CLUMSY) && prob(50)) + to_chat(user, span_danger("[src] slips out of your hand and hits your head.")) + user.take_bodypart_damage(10) + user.Unconscious(40 SECONDS) + return + + if(!user.mind?.holy_role) + to_chat(user, span_danger("The book sizzles in your hands.")) + user.take_bodypart_damage(burn = 10) + return + + if(!heal_mode) + return ..() + + if(target_mob.stat == DEAD) + target_mob.visible_message(span_danger("[user] smacks [target_mob]'s lifeless corpse with [src].")) + playsound(target_mob, SFX_PUNCH, 25, TRUE, -1) + return + + if(user == target_mob) + balloon_alert(user, "can't heal yourself!") + return + + var/smack = TRUE + if(prob(60) && bless(target_mob, user)) + smack = FALSE + else if(iscarbon(target_mob)) + var/mob/living/carbon/carbon_target = target_mob + if(!istype(carbon_target.head, /obj/item/clothing/head/helmet)) + carbon_target.adjustOrganLoss(ORGAN_SLOT_BRAIN, 5, 60) + carbon_target.balloon_alert(carbon_target, "you feel dumber!") + if(smack) + target_mob.visible_message(span_danger("[user] beats [target_mob] over the head with [src]!"), \ + span_userdanger("[user] beats [target_mob] over the head with [src]!")) + playsound(target_mob, SFX_PUNCH, 25, TRUE, -1) + log_combat(user, target_mob, "attacked", src) + +/obj/item/book/bible/afterattack(atom/bible_smacked, mob/user, proximity_flag, click_parameters) + . = ..() + if(!proximity_flag) + return + if(SEND_SIGNAL(bible_smacked, COMSIG_BIBLE_SMACKED, user, proximity_flag, click_parameters) & COMSIG_END_BIBLE_CHAIN) + return . | AFTERATTACK_PROCESSED_ITEM + if(isfloorturf(bible_smacked)) + if(user.mind?.holy_role) + var/area/current_area = get_area(bible_smacked) + if(!GLOB.chaplain_altars.len && istype(current_area, /area/station/service/chapel)) + make_new_altar(bible_smacked, user) + return + for(var/obj/effect/rune/nearby_runes in range(2, user)) + nearby_runes.invisibility = 0 + bible_smacked.balloon_alert(user, "floor smacked!") + + if(user.mind?.holy_role) + if(bible_smacked.reagents && bible_smacked.reagents.has_reagent(/datum/reagent/water)) // blesses all the water in the holder + . |= AFTERATTACK_PROCESSED_ITEM + bible_smacked.balloon_alert(user, "blessed") + var/water2holy = bible_smacked.reagents.get_reagent_amount(/datum/reagent/water) + bible_smacked.reagents.del_reagent(/datum/reagent/water) + bible_smacked.reagents.add_reagent(/datum/reagent/water/holywater,water2holy) + if(bible_smacked.reagents && bible_smacked.reagents.has_reagent(/datum/reagent/fuel/unholywater)) // yeah yeah, copy pasted code - sue me + . |= AFTERATTACK_PROCESSED_ITEM + bible_smacked.balloon_alert(user, "purified") + var/unholy2holy = bible_smacked.reagents.get_reagent_amount(/datum/reagent/fuel/unholywater) + bible_smacked.reagents.del_reagent(/datum/reagent/fuel/unholywater) + bible_smacked.reagents.add_reagent(/datum/reagent/water/holywater,unholy2holy) + if(istype(bible_smacked, /obj/item/book/bible) && !istype(bible_smacked, /obj/item/book/bible/syndicate)) + . |= AFTERATTACK_PROCESSED_ITEM + bible_smacked.balloon_alert(user, "converted") + var/obj/item/book/bible/other_bible = bible_smacked + other_bible.name = name + other_bible.icon_state = icon_state + other_bible.inhand_icon_state = inhand_icon_state + other_bible.deity_name = deity_name + + if(istype(bible_smacked, /obj/item/cult_bastard) && !IS_CULTIST(user)) + . |= AFTERATTACK_PROCESSED_ITEM + var/obj/item/cult_bastard/sword = bible_smacked + bible_smacked.balloon_alert(user, "exorcising...") + playsound(src,'sound/hallucinations/veryfar_noise.ogg',40,TRUE) + if(do_after(user, 4 SECONDS, target = sword)) + playsound(src,'sound/effects/pray_chaplain.ogg',60,TRUE) + for(var/obj/item/soulstone/stone in sword.contents) + stone.required_role = null + for(var/mob/living/basic/shade/shade in stone) + var/datum/antagonist/cult/cultist = shade.mind.has_antag_datum(/datum/antagonist/cult) + if(cultist) + cultist.silent = TRUE + cultist.on_removal() + shade.icon_state = "shade_holy" + shade.name = "Purified [shade.name]" + stone.release_shades(user) + qdel(stone) + new /obj/item/nullrod/claymore(get_turf(sword)) + user.visible_message(span_notice("[user] exorcises [sword]!")) + qdel(sword) + +/obj/item/book/bible/booze + desc = "To be applied to the head repeatedly." + +/obj/item/book/bible/booze/Initialize(mapload) + . = ..() + new /obj/item/reagent_containers/cup/glass/bottle/whiskey(src) + +/obj/item/book/bible/syndicate + name = "Syndicate Tome" + desc = "A very ominous tome resembling a bible." + icon_state ="ebook" + item_flags = NO_BLOOD_ON_ITEM + throw_speed = 2 + throw_range = 7 + throwforce = 18 + force = 18 + hitsound = 'sound/weapons/sear.ogg' + damtype = BURN + attack_verb_continuous = list("attacks", "burns", "blesses", "damns", "scorches", "curses", "smites") + attack_verb_simple = list("attack", "burn", "bless", "damn", "scorch", "curses", "smites") + deity_name = "The Syndicate" + var/uses = 1 + var/owner_name + +/obj/item/book/bible/syndicate/Initialize(mapload) + . = ..() + AddComponent(/datum/component/anti_magic, MAGIC_RESISTANCE|MAGIC_RESISTANCE_HOLY) + AddComponent(/datum/component/effect_remover, \ + success_feedback = "You disrupt the magic of %THEEFFECT with %THEWEAPON.", \ + success_forcesay = "BEGONE FOUL MAGIKS!!", \ + tip_text = "Clear rune", \ + effects_we_clear = list(/obj/effect/rune, /obj/effect/heretic_rune, /obj/effect/cosmic_rune), \ + ) + AddElement(/datum/element/bane, target_type = /mob/living/basic/revenant, damage_multiplier = 0, added_damage = 25, requires_combat_mode = FALSE) + +/obj/item/book/bible/syndicate/attack_self(mob/living/carbon/human/user, modifiers) + if(!uses || !istype(user)) + return + user.mind.holy_role = HOLY_ROLE_PRIEST + uses -= 1 + to_chat(user, span_userdanger("You try to open the book AND IT BITES YOU!")) + playsound(src.loc, 'sound/effects/snap.ogg', 50, TRUE) + var/active_hand_zone = (!(user.active_hand_index % RIGHT_HANDS) ? BODY_ZONE_R_ARM : BODY_ZONE_L_ARM) + user.apply_damage(5, BRUTE, active_hand_zone, attacking_item = src) + to_chat(user, span_notice("Your name appears on the inside cover, in blood.")) + owner_name = user.real_name + +/obj/item/book/bible/syndicate/examine(mob/user) + . = ..() + if(owner_name) + . += span_warning("The name [owner_name] is written in blood inside the cover.") + +/obj/item/book/bible/syndicate/attack(mob/living/target_mob, mob/living/carbon/human/user, params, heal_mode = TRUE) + if(!(user.istate & ISTATE_HARM)) + return ..() + else + return ..(target_mob, user, heal_mode = FALSE) diff --git a/code/modules/library/book.dm b/code/modules/library/book.dm index e789df8021ff..aae35dcc23e1 100644 --- a/code/modules/library/book.dm +++ b/code/modules/library/book.dm @@ -1,84 +1,9 @@ -//Some information about how html sanitization is handled -//All book info datums should store sanitized data. This cannot be worked around -//All inputs and outputs from the round (DB calls) need to use sanitized data -//All tgui menus should get unsanitized data, since jsx handles that on its own -//Everything else should use sanitized data. Yes including names, it's an xss vuln because of how chat works -///A datum which contains all the metadata of a book -/datum/book_info - ///The title of the book - var/title - ///The "author" of the book - var/author - ///The info inside the book - var/content - -/datum/book_info/New(_title, _author, _content) - title = _title - author = _author - content = _content - -/datum/book_info/proc/set_title(_title, trusted = FALSE) //Trusted should only be used for books read from the db, or in cases that we can be sure the info has already been sanitized - if(trusted) - title = _title - return - title = reject_bad_text(trim(html_encode(_title), 30)) - -/datum/book_info/proc/get_title(default="N/A") //Loads in an html decoded version of the title. Only use this for tgui menus, absolutely nothing else. - return html_decode(title) || "N/A" - -/datum/book_info/proc/set_author(_author, trusted = FALSE) - if(trusted) - author = _author - return - author = trim(html_encode(_author), MAX_NAME_LEN) - -/datum/book_info/proc/get_author(default="N/A") - return html_decode(author) || "N/A" - -/datum/book_info/proc/set_content(_content, trusted = FALSE) - if(trusted) - content = _content - return - content = trim(html_encode(_content), MAX_PAPER_LENGTH) - -/datum/book_info/proc/set_content_using_paper(obj/item/paper/paper) - // Just the paper's raw data. - var/raw_content = "" - for(var/datum/paper_input/text_input as anything in paper.raw_text_inputs) - raw_content += text_input.to_raw_html() - - content = trim(html_encode(raw_content), MAX_PAPER_LENGTH) - -/datum/book_info/proc/get_content(default="N/A") - return html_decode(content) || "N/A" - -///Returns a copy of the book_info datum -/datum/book_info/proc/return_copy() - var/datum/book_info/copycat = new(title, author, content) - return copycat - -///Modify an existing book_info datum to match your data -/datum/book_info/proc/copy_into(datum/book_info/copycat) - copycat.set_title(title, trusted = TRUE) - copycat.set_author(author, trusted = TRUE) - copycat.set_content(content, trusted = TRUE) - return copycat - -/datum/book_info/proc/compare(datum/book_info/cmp_with) - if(author != cmp_with.author) - return FALSE - if(title != cmp_with.title) - return FALSE - if(content != cmp_with.content) - return FALSE - return TRUE - /obj/item/book name = "book" + desc = "Crack it open, inhale the musk of its pages, and learn something new." icon = 'icons/obj/library.dmi' icon_state ="book" worn_icon_state = "book" - desc = "Crack it open, inhale the musk of its pages, and learn something new." throw_speed = 1 throw_range = 5 w_class = WEIGHT_CLASS_NORMAL //upped to three because books are, y'know, pretty big. (and you could hide them inside eachother recursively forever) @@ -87,22 +12,25 @@ resistance_flags = FLAMMABLE drop_sound = 'sound/items/handling/book_drop.ogg' pickup_sound = 'sound/items/handling/book_pickup.ogg' - ///Game time in 1/10th seconds + /// Maximum icon state number + var/maximum_book_state = 8 + /// Game time in 1/10th seconds var/due_date = 0 - ///false - Normal book, true - Should not be treated as normal book, unable to be copied, unable to be modified + /// false - Normal book, true - Should not be treated as normal book, unable to be copied, unable to be modified var/unique = FALSE + /// whether or not we have been carved out + var/carved = FALSE + /// Specific window size for the book, i.e: "1920x1080", Size x Width var/window_size = null - ///The initial title, for use in var editing and such + /// The initial title, for use in var editing and such var/starting_title - ///The initial author, for use in var editing and such + /// The initial author, for use in var editing and such var/starting_author - ///The initial bit of content, for use in var editing and such + /// The initial bit of content, for use in var editing and such var/starting_content - ///The packet of information that describes this book + /// The packet of information that describes this book var/datum/book_info/book_data - ///Maximum icon state number - var/maximum_book_state = 8 /obj/item/book/Initialize(mapload) . = ..() @@ -110,6 +38,11 @@ AddElement(/datum/element/falling_hazard, damage = 5, wound_bonus = 0, hardhat_safety = TRUE, crushes = FALSE, impact_sound = drop_sound) +/obj/item/book/examine(mob/user) + . = ..() + if(carved) + . += span_notice("[src] has been hollowed out.") + /obj/item/book/ui_static_data(mob/user) var/list/data = list() data["author"] = book_data.get_author() @@ -118,8 +51,11 @@ return data /obj/item/book/ui_interact(mob/living/user, datum/tgui/ui) + if(carved) + balloon_alert(user, "book is carved out!") + return if(!length(book_data.get_content())) - balloon_alert(user, "this book is blank!") + balloon_alert(user, "book is blank!") return if(istype(user) && !isnull(user.mind)) @@ -134,10 +70,6 @@ ui = new(user, src, "MarkdownViewer", name) ui.open() -/// Generates a random icon state for the book -/obj/item/book/proc/gen_random_icon_state() - icon_state = "book[rand(1, maximum_book_state)]" - /obj/item/book/attack_self(mob/user) if(user.is_blind()) to_chat(user, span_warning("You are blind and can't read anything!")) @@ -149,7 +81,10 @@ user.visible_message(span_notice("[user] opens a book titled \"[book_data.title]\" and begins reading intently.")) ui_interact(user) -/obj/item/book/attackby(obj/item/attacking_item, mob/user, params) +/obj/item/book/attackby(obj/item/attacking_item, mob/living/user, params) + if(burn_paper_product_attackby_check(attacking_item, user)) + return + if(istype(attacking_item, /obj/item/pen)) if(!user.can_perform_action(src) || !user.can_write(attacking_item)) return @@ -159,6 +94,9 @@ if(unique) to_chat(user, span_warning("These pages don't seem to take the ink well! Looks like you can't modify it.")) return + if(carved) + to_chat(user, span_warning("The book has been carved out! There is nothing to be vandalized.")) + return var/choice = tgui_input_list(usr, "What would you like to change?", "Book Alteration", list("Title", "Contents", "Author", "Cancel")) if(isnull(choice)) @@ -194,7 +132,6 @@ to_chat(user, span_warning("The name is invalid.")) return book_data.set_author(html_decode(author)) //Setting this encodes, don't want to double up - else if(istype(attacking_item, /obj/item/barcodescanner)) var/obj/item/barcodescanner/scanner = attacking_item var/obj/machinery/computer/libraryconsole/bookmanagement/computer = scanner.computer_ref?.resolve() @@ -221,23 +158,35 @@ computer.inventory[ref(our_copy)] = our_copy computer.inventory_update() user.balloon_alert(user, "book added to inventory") - - else if((istype(attacking_item, /obj/item/knife) || attacking_item.tool_behaviour == TOOL_WIRECUTTER) && !(flags_1 & HOLOGRAM_1)) - to_chat(user, span_notice("You begin to carve out [book_data.title]...")) - if(do_after(user, 30, target = src)) - to_chat(user, span_notice("You carve out the pages from [book_data.title]! You didn't want to read it anyway.")) - var/obj/item/storage/book/carved_out = new - carved_out.name = src.name - carved_out.title = book_data.title - carved_out.icon_state = src.icon_state - if(user.is_holding(src)) - qdel(src) - user.put_in_hands(carved_out) - return - else - carved_out.forceMove(drop_location()) - qdel(src) - return + else if(try_carve(attacking_item, user, params)) return - else - ..() + return ..() + +/// Generates a random icon state for the book +/obj/item/book/proc/gen_random_icon_state() + icon_state = "book[rand(1, maximum_book_state)]" + +/// Called when user attempts to carve the book with an item +/obj/item/book/proc/try_carve(obj/item/carving_item, mob/living/user, params) + if(carved) + return FALSE + if(!(user.istate & ISTATE_HARM)) + return FALSE + if(!((carving_item.sharpness & SHARP_EDGED) && (carving_item.tool_behaviour != TOOL_KNIFE) && (carving_item.tool_behaviour != TOOL_WIRECUTTER))) + return FALSE + //i hate balloon alerts i hate them so god damn much + balloon_alert(user, "carving out...") + if(!do_after(user, 3 SECONDS, target = src)) + balloon_alert(user, "interrupted!") + return FALSE + carve_out(carving_item, user) + return TRUE + +/// Called when the book gets carved successfully +/obj/item/book/proc/carve_out(obj/item/carving_item, mob/living/user) + if(user) + balloon_alert(user, "carved out") + playsound(src, 'sound/effects/cloth_rip.ogg', vol = 75, vary = TRUE) + carved = TRUE + create_storage(max_slots = 1) + return TRUE diff --git a/code/modules/library/book_info.dm b/code/modules/library/book_info.dm new file mode 100644 index 000000000000..8663069644d7 --- /dev/null +++ b/code/modules/library/book_info.dm @@ -0,0 +1,74 @@ +//Some information about how html sanitization is handled +//All book info datums should store sanitized data. This cannot be worked around +//All inputs and outputs from the round (DB calls) need to use sanitized data +//All tgui menus should get unsanitized data, since jsx handles that on its own +//Everything else should use sanitized data. Yes including names, it's an xss vuln because of how chat works +///A datum which contains all the metadata of a book +/datum/book_info + ///The title of the book + var/title + ///The "author" of the book + var/author + ///The info inside the book + var/content + +/datum/book_info/New(_title, _author, _content) + title = _title + author = _author + content = _content + +/datum/book_info/proc/set_title(_title, trusted = FALSE) //Trusted should only be used for books read from the db, or in cases that we can be sure the info has already been sanitized + if(trusted) + title = _title + return + title = reject_bad_text(trim(html_encode(_title), 30)) + +/datum/book_info/proc/get_title(default="N/A") //Loads in an html decoded version of the title. Only use this for tgui menus, absolutely nothing else. + return html_decode(title) || "N/A" + +/datum/book_info/proc/set_author(_author, trusted = FALSE) + if(trusted) + author = _author + return + author = trim(html_encode(_author), MAX_NAME_LEN) + +/datum/book_info/proc/get_author(default="N/A") + return html_decode(author) || "N/A" + +/datum/book_info/proc/set_content(_content, trusted = FALSE) + if(trusted) + content = _content + return + content = trim(html_encode(_content), MAX_PAPER_LENGTH) + +/datum/book_info/proc/set_content_using_paper(obj/item/paper/paper) + // Just the paper's raw data. + var/raw_content = "" + for(var/datum/paper_input/text_input as anything in paper.raw_text_inputs) + raw_content += text_input.to_raw_html() + + content = trim(html_encode(raw_content), MAX_PAPER_LENGTH) + +/datum/book_info/proc/get_content(default="N/A") + return html_decode(content) || "N/A" + +///Returns a copy of the book_info datum +/datum/book_info/proc/return_copy() + var/datum/book_info/copycat = new(title, author, content) + return copycat + +///Modify an existing book_info datum to match your data +/datum/book_info/proc/copy_into(datum/book_info/copycat) + copycat.set_title(title, trusted = TRUE) + copycat.set_author(author, trusted = TRUE) + copycat.set_content(content, trusted = TRUE) + return copycat + +/datum/book_info/proc/compare(datum/book_info/cmp_with) + if(author != cmp_with.author) + return FALSE + if(title != cmp_with.title) + return FALSE + if(content != cmp_with.content) + return FALSE + return TRUE diff --git a/code/modules/library/lib_machines.dm b/code/modules/library/lib_machines.dm index 2b42f615b495..bfdf5a5b868a 100644 --- a/code/modules/library/lib_machines.dm +++ b/code/modules/library/lib_machines.dm @@ -633,7 +633,7 @@ GLOBAL_VAR_INIT(library_table_modified, 0) return TRUE /obj/machinery/computer/libraryconsole/bookmanagement/proc/print_bible() - var/obj/item/storage/book/bible/holy_book = new(loc) + var/obj/item/book/bible/holy_book = new(loc) if(!GLOB.bible_icon_state || !GLOB.bible_inhand_icon_state) return holy_book.icon_state = GLOB.bible_icon_state diff --git a/code/modules/mapfluff/ruins/lavalandruin_code/elephantgraveyard.dm b/code/modules/mapfluff/ruins/lavalandruin_code/elephantgraveyard.dm index 730739a9a4f8..c8915fe456ff 100644 --- a/code/modules/mapfluff/ruins/lavalandruin_code/elephantgraveyard.dm +++ b/code/modules/mapfluff/ruins/lavalandruin_code/elephantgraveyard.dm @@ -164,7 +164,7 @@ new /obj/item/coin/silver(src) new /obj/item/shovel/spade(src) if(4) - new /obj/item/storage/book/bible/booze(src) + new /obj/item/book/bible/booze(src) if(5) new /obj/item/clothing/neck/stethoscope(src) new /obj/item/scalpel(src) diff --git a/code/modules/mob/living/carbon/death.dm b/code/modules/mob/living/carbon/death.dm index d75ed5450ae1..a0edf5431b62 100644 --- a/code/modules/mob/living/carbon/death.dm +++ b/code/modules/mob/living/carbon/death.dm @@ -41,9 +41,9 @@ var/atom/Tsec = drop_location() if(!no_bodyparts) if(no_organs)//so the organs don't get transfered inside the bodyparts we'll drop. - for(var/X in organs) - if(no_brain || !istype(X, /obj/item/organ/internal/brain)) - qdel(X) + for(var/organ in organs) + if(no_brain || !istype(organ, /obj/item/organ/internal/brain)) + qdel(organ) else //we're going to drop all bodyparts except chest, so the only organs that needs spilling are those inside it. for(var/obj/item/organ/organs as anything in organs) if(no_brain && istype(organs, /obj/item/organ/internal/brain)) @@ -71,6 +71,8 @@ for(var/obj/item/bodypart/part as anything in bodyparts) if(skip_head && part.body_zone == BODY_ZONE_HEAD) continue + else if(part.body_zone == BODY_ZONE_CHEST) + continue part.drop_limb() part.throw_at(get_edge_target_turf(src, pick(GLOB.alldirs)), rand(1,3), 5) diff --git a/code/modules/paperwork/paper.dm b/code/modules/paperwork/paper.dm index 52005f7e3917..989fa458d8f8 100644 --- a/code/modules/paperwork/paper.dm +++ b/code/modules/paperwork/paper.dm @@ -359,25 +359,31 @@ return TRUE return ..() -/obj/item/proc/burn_paper_product_attackby_check(obj/item/I, mob/living/user, bypass_clumsy) - var/ignition_message = I.ignition_effect(src, user) +/obj/item/proc/burn_paper_product_attackby_check(obj/item/attacking_item, mob/living/user, bypass_clumsy = FALSE) + //can't be put on fire! + if((resistance_flags & FIRE_PROOF) || !(resistance_flags & FLAMMABLE)) + return FALSE + //already on fire! + if(resistance_flags & ON_FIRE) + return FALSE + var/ignition_message = attacking_item.ignition_effect(src, user) if(!ignition_message) - return - . = TRUE + return FALSE if(!bypass_clumsy && HAS_TRAIT(user, TRAIT_CLUMSY) && prob(10) && Adjacent(user)) user.visible_message(span_warning("[user] accidentally ignites [user.p_them()]self!"), \ span_userdanger("You miss [src] and accidentally light yourself on fire!")) - if(user.is_holding(I)) //checking if they're holding it in case TK is involved - user.dropItemToGround(I) - user.adjust_fire_stacks(1) + if(user.is_holding(attacking_item)) //checking if they're holding it in case TK is involved + user.dropItemToGround(attacking_item) + user.adjust_fire_stacks(attacking_item) user.ignite_mob() - return + return TRUE if(user.is_holding(src)) //no TK shit here. user.dropItemToGround(src) user.visible_message(ignition_message) add_fingerprint(user) - fire_act(I.get_temperature()) + fire_act(attacking_item.get_temperature()) + return TRUE /obj/item/paper/attackby(obj/item/attacking_item, mob/living/user, params) if(burn_paper_product_attackby_check(attacking_item, user)) diff --git a/code/modules/uplink/uplink_items/device_tools.dm b/code/modules/uplink/uplink_items/device_tools.dm index 75d2801acb2b..cd13886b275c 100644 --- a/code/modules/uplink/uplink_items/device_tools.dm +++ b/code/modules/uplink/uplink_items/device_tools.dm @@ -38,7 +38,7 @@ the seemingly magical books of a certain cult. Though lacking the esoteric abilities \ of the originals, these inferior copies are still quite useful, being able to provide \ both weal and woe on the battlefield, even if they do occasionally bite off a finger." - item = /obj/item/storage/book/bible/syndicate + item = /obj/item/book/bible/syndicate cost = 5 /datum/uplink_item/device_tools/tram_remote diff --git a/icons/ui_icons/achievements/achievements.dmi b/icons/ui_icons/achievements/achievements.dmi index 80d37860846e74e9882c39a8599129b052eee2a0..59d763201a0a0401332e42a78232dab6d1e3b761 100644 GIT binary patch literal 244838 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�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

~Mm;!y7}3ZBvR+H9H( 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 iDmo6wKm9YV+Zw|CkGPLHwcGu{7?ceF diff --git a/monkestation/code/game/objects/items/storage/book.dm b/monkestation/code/game/objects/items/storage/book.dm index 10345f87df46..3dcb8096e819 100644 --- a/monkestation/code/game/objects/items/storage/book.dm +++ b/monkestation/code/game/objects/items/storage/book.dm @@ -1,4 +1,4 @@ -/obj/item/storage/book/bible/mini +/obj/item/book/bible/mini //Grif name = "O.C. Bible" desc = "For when you don't want the good book to take up too much space in your life, its so small you can hide it under floors." @@ -8,6 +8,6 @@ inhand_icon_state = null w_class = WEIGHT_CLASS_SMALL -/obj/item/storage/book/bible/mini/Initialize(mapload) +/obj/item/book/bible/mini/Initialize(mapload) . = ..() AddElement(/datum/element/undertile, TRAIT_T_RAY_VISIBLE, INVISIBILITY_OBSERVER, use_anchor = TRUE) diff --git a/monkestation/code/modules/ghost_players/arena/maps/snow.dmm b/monkestation/code/modules/ghost_players/arena/maps/snow.dmm index d59b33d9d9f3..b07925b5143d 100644 --- a/monkestation/code/modules/ghost_players/arena/maps/snow.dmm +++ b/monkestation/code/modules/ghost_players/arena/maps/snow.dmm @@ -284,7 +284,7 @@ /turf/open/floor/wood/large, /area/centcom/tdome/arena/actual) "Vj" = ( -/obj/item/storage/book/bible{ +/obj/item/book/bible{ pixel_y = 5 }, /obj/structure/table/wood, diff --git a/monkestation/code/modules/mob/living/carbon/human/emotes.dm b/monkestation/code/modules/mob/living/carbon/human/emotes.dm index 3b41962c83ca..4edc0f25db10 100644 --- a/monkestation/code/modules/mob/living/carbon/human/emotes.dm +++ b/monkestation/code/modules/mob/living/carbon/human/emotes.dm @@ -17,7 +17,7 @@ //BIBLEFART/ //This goes above all else because it's an instagib. - for(var/obj/item/storage/book/bible/Holy in Location) + for(var/obj/item/book/bible/Holy in Location) if(Holy) var/mob/living/carbon/human/Person = user //We know they are human already, it was in the emote check. var/turf/T = get_step(get_step(Person, NORTH), NORTH) diff --git a/monkestation/code/modules/surgery/organs/internal/butts.dm b/monkestation/code/modules/surgery/organs/internal/butts.dm index 97a2225e7622..e8fe995bc3cb 100644 --- a/monkestation/code/modules/surgery/organs/internal/butts.dm +++ b/monkestation/code/modules/surgery/organs/internal/butts.dm @@ -160,7 +160,7 @@ //BIBLEFART //This goes above all else because it's an instagib. - for(var/obj/item/storage/book/bible/Holy in Location) + for(var/obj/item/book/bible/Holy in Location) if(Holy) cooling_down = TRUE var/turf/T = get_step(get_step(Person, NORTH), NORTH) diff --git a/monkestation/code/modules/uplink/uplink_items/job.dm b/monkestation/code/modules/uplink/uplink_items/job.dm index 8d80747eca3d..2395ddbf650a 100644 --- a/monkestation/code/modules/uplink/uplink_items/job.dm +++ b/monkestation/code/modules/uplink/uplink_items/job.dm @@ -3,7 +3,7 @@ desc = "We understand it can be difficult to carry out some of our missions. Here is some spiritual counsel in a small package." progression_minimum = 5 MINUTES cost = 1 - item = /obj/item/storage/book/bible/mini + item = /obj/item/book/bible/mini restricted_roles = list(JOB_CHAPLAIN, JOB_CLOWN) /datum/uplink_item/role_restricted/reverse_bear_trap diff --git a/tgstation.dme b/tgstation.dme index 64747535d0c6..5f37c47b3379 100644 --- a/tgstation.dme +++ b/tgstation.dme @@ -2346,7 +2346,6 @@ #include "code\game\objects\items\storage\bags.dm" #include "code\game\objects\items\storage\basket.dm" #include "code\game\objects\items\storage\belt.dm" -#include "code\game\objects\items\storage\book.dm" #include "code\game\objects\items\storage\briefcase.dm" #include "code\game\objects\items\storage\fancy.dm" #include "code\game\objects\items\storage\garment.dm" @@ -4070,7 +4069,9 @@ #include "code\modules\language\xenocommon.dm" #include "code\modules\library\admin_only.dm" #include "code\modules\library\barcode_scanner.dm" +#include "code\modules\library\bibles.dm" #include "code\modules\library\book.dm" +#include "code\modules\library\book_info.dm" #include "code\modules\library\bookcase.dm" #include "code\modules\library\lib_codex_gigas.dm" #include "code\modules\library\lib_machines.dm" diff --git a/tools/UpdatePaths/75350_book_storage_repath.txt b/tools/UpdatePaths/75350_book_storage_repath.txt new file mode 100644 index 000000000000..2e614084ef18 --- /dev/null +++ b/tools/UpdatePaths/75350_book_storage_repath.txt @@ -0,0 +1 @@ +/obj/item/storage/book/@SUBTYPES : /obj/item/book/@SUBTYPES{@OLD} diff --git a/tools/UpdatePaths/Scripts/75350_book_storage_repath.txt b/tools/UpdatePaths/Scripts/75350_book_storage_repath.txt new file mode 100644 index 000000000000..2e614084ef18 --- /dev/null +++ b/tools/UpdatePaths/Scripts/75350_book_storage_repath.txt @@ -0,0 +1 @@ +/obj/item/storage/book/@SUBTYPES : /obj/item/book/@SUBTYPES{@OLD}