From c080d4b5fe1bd114d0bdb0780e410d25191afee6 Mon Sep 17 00:00:00 2001 From: hazelrat <83198434+hazelrat@users.noreply.github.com> Date: Thu, 30 Jul 2026 15:48:50 +0100 Subject: [PATCH] Machinist workshop remap (#22898) Remaps the machinist workshop to fulfil a few criteria missing from https://github.com/Aurorastation/Aurora.3/pull/22718. Particularly aims to make the workshop more functional for IPC medical gameplay. - The surgical theatre has been expanded so two machinists can more practically work in the same space at the same time. In the existing design, this portion of the workshop is far too claustrophobic. It also has a desk. - The exosuit chargers no longer obstruct access from the garage door. - Resolved a lot of awkward uses of decals and platforms, which should also make for more useable space. - Cleaned up the wiring - both rooms are now wired to the civilian subgrid. Previously, the main workshop area was hooked via a very awkward line to the operations subgrid, while the theatre was wired to civilian. - Shifted a lot of the clutter into the robotics vendor, such as the empty first-aid kits for medbots. - Shifted materials crates + the crate shelf to a central position, to make them easier to track. Things of note for maintainers: - It's never ideal to remap something very soon after the original implementation, but having given this remap a full month, I think it's had a fair chance. Having played machinist in it, the layout is very tough to work in. It's a very cluttered environment, which becomes much harder to look at once there's a disassembled mech cluttering the centre with a dozen or so objects. This aims to be more intuitive to play in and less overwhelming for players. - The surgical theatre contains one additional IV drip, one extra O- bag, and one organ cooler for borgings, and there are now two roller beds accessible by the front desk. I'd rather have a more unique solution for this problem long-term, but in the short-term it very much sucks to have to ask to borrow a roller from medical just so you can move a damaged industrial, given you can no longer pick that industrial up unless you're playing a huge species. - Otherwise, the workshop has the same resources as before and will be able to make the same things. (screenshot taken after testing, and prior to further changes) image image --- .../objects/items/weapons/surgery_tools.dm | 2 + .../structures/machinery/vending/engitech.dm | 7 +- code/modules/multiz/structures.dm | 19 +- .../reagents/reagent_containers/spray.dm | 5 + code/modules/research/rdconsole.dm | 11 + html/changelogs/hazelmouse-workshop.yml | 59 + maps/sccv_horizon/sccv_horizon.dmm | 7889 +++++++++-------- 7 files changed, 4079 insertions(+), 3913 deletions(-) create mode 100644 html/changelogs/hazelmouse-workshop.yml diff --git a/code/game/objects/items/weapons/surgery_tools.dm b/code/game/objects/items/weapons/surgery_tools.dm index 784d839b6c9..093860682c9 100644 --- a/code/game/objects/items/weapons/surgery_tools.dm +++ b/code/game/objects/items/weapons/surgery_tools.dm @@ -336,6 +336,8 @@ /obj/item/storage/box/fancy/tray/machinist name = "machinist operation tray" desc = "A tray of various tools for use by machinists in repairing robots." + // So additional tools can be added. + max_storage_space = 23 can_hold = list( /obj/item/surgery/cautery, /obj/item/surgery/circular_saw, diff --git a/code/game/objects/structures/machinery/vending/engitech.dm b/code/game/objects/structures/machinery/vending/engitech.dm index f72fcc4e02f..5c4d7b61e6c 100644 --- a/code/game/objects/structures/machinery/vending/engitech.dm +++ b/code/game/objects/structures/machinery/vending/engitech.dm @@ -19,15 +19,18 @@ vend_id = "robo-tools" products = list( /obj/item/stack/cable_coil = 4, - /obj/item/flash/synthetic = 4, + /obj/item/flash/synthetic = 10, /obj/item/cell/high = 12, /obj/item/assembly/prox_sensor = 8, /obj/item/assembly/signaler = 20, /obj/item/healthanalyzer = 3, /obj/item/surgery/scalpel = 2, + /obj/item/surgery/hemostat = 2, + /obj/item/storage/firstaid/empty = 2, /obj/item/surgery/circular_saw = 2, /obj/item/screwdriver = 5, - /obj/item/crowbar = 5 + /obj/item/crowbar = 5, + /obj/item/mmi = 2 ) contraband = list( /obj/item/flash = 2 diff --git a/code/modules/multiz/structures.dm b/code/modules/multiz/structures.dm index 1998734cbd6..5046f520aa6 100644 --- a/code/modules/multiz/structures.dm +++ b/code/modules/multiz/structures.dm @@ -430,6 +430,14 @@ color = COLOR_TILED pass_flags_self = LETPASSTHROW|PASSSTRUCTURE|PASSRAILING +/obj/structure/platform/Initialize(mapload) + . = ..() + update_icon() + +/obj/structure/platform/update_icon() + if(dir == NORTH) + layer = ABOVE_HUMAN_LAYER + /obj/structure/platform/dark icon_state = "platform_dark" color = COLOR_DARK_GUNMETAL @@ -510,9 +518,6 @@ /obj/structure/platform/cutout/CanPass() return TRUE -/obj/structure/platform/bar - layer = ABOVE_HUMAN_LAYER - /// No special CanPass for this one. /obj/structure/platform_deco name = "platform" @@ -522,6 +527,14 @@ icon_state = "platform_deco" color = COLOR_TILED +/obj/structure/platform_deco/Initialize(mapload) + . = ..() + update_icon() + +/obj/structure/platform_deco/update_icon() + if(dir & (NORTH|SOUTH)) + layer = ABOVE_HUMAN_LAYER + /obj/structure/platform_deco/dark icon_state = "platform_deco_dark" color = COLOR_DARK_GUNMETAL diff --git a/code/modules/reagents/reagent_containers/spray.dm b/code/modules/reagents/reagent_containers/spray.dm index 13806387833..0e83d4bea46 100644 --- a/code/modules/reagents/reagent_containers/spray.dm +++ b/code/modules/reagents/reagent_containers/spray.dm @@ -134,6 +134,11 @@ name = "space cleaner" desc = "BLAM!-brand non-foaming space cleaner!" +/obj/item/reagent_containers/spray/cleaner/surgical + name = "surgical cleaner" + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back." + icon_state = "sterilespray" + /obj/item/reagent_containers/spray/cleaner/drone name = "space cleaner" desc = "BLAM!-brand non-foaming space cleaner!" diff --git a/code/modules/research/rdconsole.dm b/code/modules/research/rdconsole.dm index 0c856b91c76..b123651af9f 100644 --- a/code/modules/research/rdconsole.dm +++ b/code/modules/research/rdconsole.dm @@ -886,6 +886,17 @@ won't update every console in existence) but it's more of a hassle to do. Also, allow_analyzer = FALSE circuit = /obj/item/circuitboard/robotics_console +/obj/structure/machinery/computer/rdconsole/robotics/terminal + name = "robotics R&D terminal" + icon = 'icons/obj/modular_computers/modular_terminal.dmi' + icon_screen = "mecha" + icon_keyboard = "power_key" + icon_keyboard_emis = "power_key_mask" + is_connected = TRUE + has_off_keyboards = TRUE + can_pass_under = FALSE + light_power_on = 1 + /obj/structure/machinery/computer/rdconsole/core name = "core R&D console" desc = "A console which is used to operate various research devices. It is the backbone of any megacorporate research division." diff --git a/html/changelogs/hazelmouse-workshop.yml b/html/changelogs/hazelmouse-workshop.yml new file mode 100644 index 00000000000..a0c2346581c --- /dev/null +++ b/html/changelogs/hazelmouse-workshop.yml @@ -0,0 +1,59 @@ +################################ +# Example Changelog File +# +# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb. +# +# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.) +# When it is, any changes listed below will disappear. +# +# Valid Prefixes: +# bugfix +# - (fixes bugs) +# wip +# - (work in progress) +# qol +# - (quality of life) +# soundadd +# - (adds a sound) +# sounddel +# - (removes a sound) +# rscadd +# - (adds a feature) +# rscdel +# - (removes a feature) +# imageadd +# - (adds an image or sprite) +# imagedel +# - (removes an image or sprite) +# spellcheck +# - (fixes spelling or grammar) +# experiment +# - (experimental change) +# balance +# - (balance changes) +# code_imp +# - (misc internal code change) +# refactor +# - (refactors code) +# config +# - (makes a change to the config files) +# admin +# - (makes changes to administrator tools) +# server +# - (miscellaneous changes to server) +################################# + +# Your name. +author: hazelmouse + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, this gets changed to [] after reading. Just remove the brackets when you add new shit. +# Please surround your changes in double quotes ("). It works without them, but if you use certain characters it screws up compiling. The quotes will not show up in the changelog. +changes: + - rscadd: "Implemented a remap of the Machinist Workshop." + - rscadd: "North-facing platforms now layer correctly over humans." diff --git a/maps/sccv_horizon/sccv_horizon.dmm b/maps/sccv_horizon/sccv_horizon.dmm index 078a7a6fa96..f515e2d0354 100644 --- a/maps/sccv_horizon/sccv_horizon.dmm +++ b/maps/sccv_horizon/sccv_horizon.dmm @@ -526,15 +526,6 @@ }, /turf/unsimulated/floor/wood, /area/antag/mercenary) -"ade" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/railing/mapped/no_density/low{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/horizon/operations/machinist) "adi" = ( /obj/structure/cable{ icon_state = "1-2" @@ -581,6 +572,25 @@ }, /turf/simulated/floor/tiled, /area/horizon/operations/loading) +"adA" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 4 + }, +/obj/structure/machinery/button/switch/windowtint{ + id = "workshopfabrication"; + pixel_x = 10 + }, +/obj/item/pen/black{ + pixel_x = -3; + pixel_y = 4 + }, +/obj/structure/table/reinforced/glass, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) "adB" = ( /obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ id = "library" @@ -731,13 +741,6 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/wing/starboard/far) -"aeh" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled, -/area/horizon/hallway/primary/deck_2/starboard) "aek" = ( /obj/effect/floor_decal/industrial/warning{ dir = 10 @@ -931,12 +934,6 @@ /obj/structure/flora/ausbushes/ywflowers, /turf/simulated/floor/exoplanet/grass/grove, /area/centcom/shared_dream) -"aeV" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/maintenance/deck_2/service/starboard) "aeW" = ( /obj/effect/floor_decal/corner/brown{ dir = 5 @@ -2078,6 +2075,19 @@ icon_state = "beachcorner" }, /area/horizon/holodeck/source_desert) +"alr" = ( +/obj/structure/bed/stool/chair/office/bridge, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/effect/landmark/start{ + name = "Executive Officer" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/meeting_room) "alx" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 @@ -2405,16 +2415,6 @@ /obj/effect/map_effect/perma_light/starlight, /turf/space, /area/template_noop) -"anO" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/wood, -/area/horizon/command/heads/xo_office) "anV" = ( /obj/structure/closet/emcloset, /obj/effect/floor_decal/corner/dark_green/full{ @@ -2971,23 +2971,6 @@ "asT" = ( /turf/simulated/wall/shuttle/scc, /area/horizon/shuttle/intrepid/flight_deck) -"asV" = ( -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ - id = "xo_privacy_tint" - }, -/obj/structure/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor, -/area/horizon/command/heads/xo_desk) "ata" = ( /obj/effect/floor_decal/industrial/warning{ dir = 9 @@ -3578,18 +3561,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/maintenance/deck_3/auxatmos) -"avP" = ( -/obj/structure/table/reinforced/wood, -/obj/structure/machinery/photocopier/faxmachine{ - department = "Executive Officer's Office"; - pixel_y = 5 - }, -/obj/item/storage/secure/safe/id_lock{ - req_access = list(57); - pixel_y = 32 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/command/heads/xo_office) "awa" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 @@ -4032,10 +4003,6 @@ }, /turf/simulated/floor/carpet, /area/horizon/repoffice/representative_two) -"azM" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/maintenance/deck_2/aft) "azN" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/machinery/power/smes/buildable/horizon_shuttle{ @@ -4479,17 +4446,6 @@ /obj/structure/lattice/catwalk/indoor, /turf/simulated/floor/plating, /area/horizon/engineering/reactor/indra/mainchamber) -"aCF" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/sortjunction/flipped{ - dir = 8; - name = "Machinist Workshop"; - sortType = "Machinist Workshop" - }, -/turf/simulated/floor/tiled/full, -/area/horizon/hallway/primary/deck_2/starboard) "aCG" = ( /obj/structure/machinery/firealarm/east, /obj/structure/table/reinforced/glass, @@ -4666,28 +4622,6 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/rnd/chemistry) -"aEh" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 1 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/wood, -/area/horizon/command/heads/xo_office) "aEo" = ( /obj/structure/machinery/light/small{ dir = 1 @@ -4825,6 +4759,25 @@ }, /turf/simulated/floor/tiled, /area/horizon/operations/office) +"aFL" = ( +/obj/structure/platform/cutout, +/obj/structure/platform_stairs/full/east_west_cap{ + dir = 8 + }, +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) "aFT" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -4834,19 +4787,6 @@ /obj/structure/lattice/catwalk/indoor, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/medical/cryo) -"aFW" = ( -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille, -/obj/structure/machinery/door/firedoor, -/obj/effect/landmark/entry_point/fore{ - name = "fore, machinist workshop" - }, -/obj/structure/machinery/door/blast/shutters{ - id = "machinist_fab_shutters"; - name = "Machinist Workshop Garage Shutter" - }, -/turf/simulated/floor/plating, -/area/horizon/operations/machinist) "aFX" = ( /obj/structure/table/wood, /obj/effect/floor_decal/spline/fancy/wood, @@ -4955,26 +4895,6 @@ }, /turf/space, /area/horizon/exterior) -"aGB" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/primary/deck_2/starboard) -"aGE" = ( -/obj/structure/bed/stool/chair/office/dark, -/obj/effect/landmark/start{ - name = "Machinist" - }, -/obj/effect/floor_decal/corner/brown/full, -/turf/simulated/floor/tiled, -/area/horizon/operations/machinist) "aGF" = ( /obj/structure/machinery/light{ dir = 1 @@ -5943,6 +5863,16 @@ /obj/random/hydroponics, /turf/simulated/floor/tiled/dark/full, /area/horizon/service/hydroponics/lower) +"aLO" = ( +/obj/structure/sign/staff_only{ + pixel_x = -32 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/random/loot, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/holodeck) "aLT" = ( /obj/structure/machinery/vending/coffee/free{ pixel_x = -1 @@ -6833,6 +6763,15 @@ }, /turf/simulated/floor/carpet/rubber, /area/horizon/engineering/reactor/indra/monitoring) +"aRj" = ( +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ + id = "xo_conference_tint" + }, +/turf/simulated/floor, +/area/horizon/command/heads/xo_office) "aRo" = ( /obj/effect/floor_decal/corner/brown{ dir = 9 @@ -7470,16 +7409,6 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/wing/port) -"aWi" = ( -/obj/structure/machinery/mecha_part_fabricator{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/carpet/rubber, -/area/horizon/operations/machinist) "aWv" = ( /obj/structure/shuttle/engine/propulsion{ name = "spaceship engine"; @@ -7518,12 +7447,6 @@ /obj/effect/floor_decal/spline/plain, /turf/simulated/floor/exoplanet/grass, /area/centcom/shared_dream) -"aWJ" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/turf/simulated/floor/carpet, -/area/horizon/command/heads/xo_office) "aWM" = ( /obj/structure/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 9 @@ -7682,6 +7605,32 @@ name = "dirt" }, /area/horizon/holodeck/source_adhomai) +"aXC" = ( +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/obj/structure/machinery/button/remote/blast_door{ + id = "shutters_deck2_auxcustdesk"; + name = "Auxiliary Custodial Closet Desk Shutter"; + pixel_x = -25; + pixel_y = 25; + req_access = list(26); + dir = 1 + }, +/obj/structure/machinery/button/remote/blast_door{ + id = "shutters_deck2_auxcustwindow"; + name = "Auxiliary Custodial Closet Window Shutter"; + pixel_x = -36; + pixel_y = 25; + req_access = list(26); + dir = 1 + }, +/obj/structure/bed/stool/chair/office/dark{ + dir = 1 + }, +/obj/structure/machinery/light/small/floor, +/turf/simulated/floor/tiled, +/area/horizon/service/custodial/auxiliary) "aXE" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -7871,13 +7820,6 @@ icon_state = "white" }, /area/centcom/holding) -"aYT" = ( -/obj/structure/machinery/hologram/holopad, -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/machinist) "aYY" = ( /obj/item/material/shard{ icon_state = "small" @@ -7947,6 +7889,20 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/rnd/xenoarch/hallway/elevator) +"aZG" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/item/pipe_meter{ + pixel_x = 2; + pixel_y = 5 + }, +/obj/item/pipe_meter{ + pixel_x = 8 + }, +/obj/item/pipe_meter{ + pixel_x = -8 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/engineering/atmos/storage_maintenance) "aZL" = ( /obj/structure/closet{ icon_door = "white"; @@ -8088,24 +8044,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/service/bar) -"bas" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/horizon/command/bridge/controlroom) "bay" = ( /obj/structure/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 @@ -8257,6 +8195,24 @@ }, /turf/simulated/floor/wood, /area/horizon/hallway/primary/deck_1/central) +"bbt" = ( +/obj/effect/floor_decal/corner/brown/full, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/starboard) "bbv" = ( /obj/item/magnetic_lock, /obj/item/magnetic_lock, @@ -8458,6 +8414,24 @@ /obj/item/hullbeacon/red, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior/no_shields) +"bcP" = ( +/obj/structure/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/machinery/door/airlock/command{ + dir = 1; + name = "Executive Officer's Office"; + req_access = list(57) + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/command/heads/xo_office) "bcT" = ( /obj/structure/machinery/alarm/north, /obj/structure/machinery/chem_heater, @@ -8581,19 +8555,6 @@ }, /turf/simulated/floor, /area/horizon/maintenance/deck_3/auxatmos) -"bdC" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/item/reagent_containers/glass/bucket, -/obj/structure/machinery/atmospherics/pipe/simple/hidden, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/rnd/xenobiology/xenoflora) "bdD" = ( /obj/effect/floor_decal/spline/fancy/wood, /obj/structure/bed/stool/chair/wood{ @@ -8666,6 +8627,14 @@ }, /turf/simulated/floor/tiled, /area/horizon/hangar/operations) +"bdY" = ( +/obj/item/reagent_containers/glass/bucket{ + amount_per_transfer_from_this = 50 + }, +/turf/unsimulated/floor{ + icon_state = "dark_preview" + }, +/area/centcom/holding) "bdZ" = ( /obj/structure/railing/mapped{ dir = 8 @@ -9705,25 +9674,6 @@ }, /turf/unsimulated/floor/plating, /area/shuttle/specops) -"bjO" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch_door/yellow, -/obj/structure/machinery/door/firedoor{ - req_one_access = list(24,11,67,73); - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/maintenance{ - dir = 4; - name = "Machinist Workshop Maintenance"; - req_access = list(29) - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/maintenance/deck_2/service/starboard) "bkd" = ( /obj/structure/machinery/door/firedoor{ req_one_access = list(24,11,67,73); @@ -9943,21 +9893,6 @@ /obj/structure/machinery/atmospherics/pipe/simple/hidden/fuel, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/auxatmos) -"blQ" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/obj/structure/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/horizon/command/bridge/controlroom) "bma" = ( /obj/item/modular_computer/console/preset/medical, /obj/effect/floor_decal/corner_wide/green{ @@ -11132,24 +11067,6 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/medical/exam) -"btw" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/horizon/operations/machinist) "btA" = ( /obj/structure/window/shuttle/scc_space_ship, /obj/structure/grille, @@ -11196,6 +11113,35 @@ }, /turf/simulated/floor/lino, /area/horizon/security/investigators_office) +"btM" = ( +/obj/effect/landmark/entry_point/starboard{ + name = "starboard, executive officers office" + }, +/obj/structure/machinery/door/firedoor{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/structure/grille, +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/machinery/door/blast/shutters{ + dir = 4; + id = "xo_office_window_shutter"; + name = "Safety Shutter" + }, +/obj/structure/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor, +/area/horizon/command/heads/xo_office) "btO" = ( /turf/simulated/floor/holofloor/beach/sand{ dir = 1; @@ -11232,12 +11178,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/engineering/hallway/aft) -"bum" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/horizon/operations/machinist) "buo" = ( /obj/random/dirt_75, /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -11468,19 +11408,6 @@ /obj/structure/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/tiled, /area/horizon/stairwell/engineering/deck_2) -"bvR" = ( -/obj/item/modular_computer/console/preset/supply/machinist{ - dir = 4 - }, -/obj/structure/machinery/camera{ - c_tag = "Operations - Machinist Workshop 2"; - network = list("Operations") - }, -/obj/effect/floor_decal/spline/plain/brown{ - dir = 10 - }, -/turf/simulated/floor/tiled/full, -/area/horizon/operations/machinist) "bvV" = ( /obj/random/dirt_75, /obj/random/maintenance_junk_or_loot, @@ -11542,12 +11469,6 @@ }, /turf/simulated/floor/holofloor/carpet, /area/horizon/holodeck/source_dininghall) -"bwx" = ( -/obj/structure/machinery/mech_recharger, -/obj/effect/floor_decal/industrial/outline/red, -/mob/living/heavy_vehicle/premade/random/boring, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/machinist) "bwz" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -11856,6 +11777,22 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/wing/starboard) +"byH" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) "byJ" = ( /obj/structure/machinery/door/blast/odin{ dir = 4; @@ -12386,6 +12323,19 @@ }, /turf/unsimulated/floor, /area/antag/mercenary) +"bCk" = ( +/obj/effect/floor_decal/corner_wide/brown/diagonal, +/obj/structure/bed/stool/chair/office/dark{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain/purple{ + dir = 5 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/operations/machinist) "bCp" = ( /obj/structure/table/reinforced/steel, /obj/item/aicard, @@ -12614,6 +12564,10 @@ density = 1 }, /area/antag/ninja) +"bEj" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled, +/area/horizon/maintenance/deck_3/aft/holodeck) "bEm" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -12868,15 +12822,6 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/command/bridge/upperdeck) -"bGv" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/simulated/floor/carpet/rubber, -/area/horizon/operations/machinist) "bGw" = ( /obj/random/junk, /obj/random/dirt_75, @@ -13797,6 +13742,13 @@ }, /turf/simulated/floor/tiled, /area/horizon/hallway/primary/deck_2/central) +"bNA" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/service/starboard) "bNE" = ( /obj/structure/platform_stairs/south_north_solo, /obj/structure/platform{ @@ -13930,6 +13882,9 @@ }, /turf/simulated/wall, /area/horizon/engineering/bluespace_drive) +"bOF" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/command/heads/xo_office) "bOL" = ( /obj/structure/shuttle_part/scc_space_ship{ icon_state = "d2-3-f" @@ -14331,18 +14286,6 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/medical/hallway/upper) -"bQQ" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/platform_deco{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/carpet/rubber, -/area/horizon/operations/machinist) "bQX" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -14624,18 +14567,6 @@ /obj/effect/floor_decal/industrial/hatch_door/engineering, /turf/simulated/floor/tiled/dark/full, /area/horizon/command/heads/chief) -"bSH" = ( -/obj/structure/platform, -/obj/effect/floor_decal/corner_wide/black{ - dir = 10 - }, -/obj/structure/machinery/firealarm/east, -/obj/effect/floor_decal/corner_wide/black{ - dir = 5 - }, -/obj/structure/machinery/mineral/rigpress, -/turf/simulated/floor/tiled/white, -/area/horizon/operations/machinist) "bSN" = ( /obj/structure/machinery/embedded_controller/radio/simple_docking_controller{ frequency = 1337; @@ -14713,19 +14644,6 @@ }, /turf/unsimulated/floor, /area/centcom/evac) -"bTs" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/horizon/operations/lobby) "bTv" = ( /obj/structure/shuttle_part/scc_space_ship{ icon_state = "d3-6" @@ -14937,6 +14855,15 @@ icon_state = "white" }, /area/centcom/legion) +"bUM" = ( +/obj/effect/floor_decal/corner_wide/brown/diagonal, +/obj/effect/floor_decal/spline/plain/purple, +/obj/structure/platform, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/operations/machinist/surgicalbay) "bUQ" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/ore_box, @@ -15812,6 +15739,25 @@ /obj/random/maintenance_junk_or_loot, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/auxatmos) +"cbw" = ( +/obj/structure/table/reinforced/wood, +/obj/structure/machinery/controlhub/xo_office/private{ + pixel_x = -8; + pixel_y = -3 + }, +/obj/structure/machinery/requests_console/north{ + announcementConsole = 1; + department = "Executive Officer's Office"; + departmentType = 5; + name = "XO's Office Requests Console"; + pixel_y = 32 + }, +/obj/structure/machinery/power/outlet{ + pixel_y = 4; + pixel_x = 6 + }, +/turf/simulated/floor/carpet, +/area/horizon/command/heads/xo_office) "cbx" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 @@ -16107,21 +16053,22 @@ "cdt" = ( /turf/simulated/floor/holofloor/reinforced, /area/horizon/holodeck/source_biesel) +"cdz" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/starboard) "cdA" = ( /obj/effect/floor_decal/spline/fancy/wood/corner{ dir = 4 }, /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_sauna) -"cdM" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/primary/deck_2/starboard) "cdO" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 9 @@ -16468,6 +16415,14 @@ }, /turf/simulated/floor/tiled/white, /area/centcom/shared_dream) +"cga" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/structure/machinery/light_switch/east, +/obj/structure/machinery/alarm/north, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/meeting_room) "cgc" = ( /obj/structure/railing/mapped{ dir = 4 @@ -16551,6 +16506,15 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/dark, /area/horizon/maintenance/deck_2/wing/starboard/near) +"cgB" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/loading/yellow, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/horizon/stairwell/starboard/deck_2) "cgH" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -16836,6 +16800,23 @@ }, /turf/simulated/floor/carpet, /area/horizon/command/heads/hos) +"ciJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/outline/red, +/obj/structure/machinery/mech_recharger, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) "ciL" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -17068,6 +17049,28 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/reactor/indra/mainchamber) +"ckm" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/bed/stool/chair{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/operations/machinist) "ckn" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -17174,6 +17177,21 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/main/starboard) +"clg" = ( +/obj/item/modular_computer/console/preset/command/hop{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline_corner/security{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline_segment/security{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/outline_segment/security{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/command/heads/xo_office) "clj" = ( /obj/structure/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 @@ -17444,31 +17462,11 @@ }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"cnt" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 5 - }, -/obj/structure/machinery/button/remote/blast_door{ - id = "shutters_deck2_auxcustdesk"; - name = "Auxiliary Custodial Closet Desk Shutter"; - pixel_x = -25; - pixel_y = 25; - req_access = list(26); - dir = 1 - }, -/obj/structure/machinery/button/remote/blast_door{ - id = "shutters_deck2_auxcustwindow"; - name = "Auxiliary Custodial Closet Window Shutter"; - pixel_x = -36; - pixel_y = 25; - req_access = list(26); - dir = 1 - }, -/obj/structure/bed/stool/chair/office/dark{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/horizon/service/custodial/auxiliary) +"cnh" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/machinery/light, +/turf/simulated/floor/carpet/rubber, +/area/horizon/engineering/storage_hard/upper) "cnw" = ( /obj/effect/floor_decal/corner/mauve/diagonal, /obj/effect/floor_decal/corner/mauve{ @@ -17834,6 +17832,17 @@ /obj/item/crowbar/red, /turf/simulated/floor/tiled/dark, /area/horizon/command/bridge/controlroom) +"cqc" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/starboard) "cqg" = ( /obj/structure/machinery/airlock_sensor{ dir = 4; @@ -18677,6 +18686,15 @@ /obj/structure/machinery/firealarm/west, /turf/simulated/floor/tiled, /area/horizon/hallway/primary/deck_3/central) +"cvw" = ( +/obj/structure/closet/secure_closet/xo, +/obj/effect/floor_decal/industrial/outline/security, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/machinery/alarm/south, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/command/heads/xo_office) "cvx" = ( /obj/effect/floor_decal/industrial/warning, /obj/structure/tank_wall/nitrogen{ @@ -19510,10 +19528,6 @@ icon_state = "0,3" }, /area/centcom/specops) -"cAk" = ( -/obj/effect/floor_decal/industrial/outline/service, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/service/hydroponics) "cAo" = ( /obj/structure/bed/stool/chair/office/bridge/pilot, /obj/effect/decal/cleanable/dirt, @@ -19528,6 +19542,24 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/medical/equipment) +"cAx" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/heads/xo_desk) "cAz" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -19727,35 +19759,6 @@ }, /turf/simulated/floor/plating, /area/horizon/engineering/bluespace_drive) -"cBS" = ( -/obj/effect/landmark/entry_point/starboard{ - name = "starboard, executive officers office" - }, -/obj/structure/machinery/door/firedoor{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/structure/grille, -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/machinery/door/blast/shutters{ - dir = 4; - id = "xo_office_window_shutter"; - name = "Safety Shutter" - }, -/obj/structure/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor, -/area/horizon/command/heads/xo_office) "cBT" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -20018,6 +20021,14 @@ /obj/item/hullbeacon/red, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) +"cDN" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/machinery/light/small/floor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) "cDO" = ( /turf/simulated/floor/carpet, /area/horizon/repoffice/consular_two) @@ -20051,6 +20062,15 @@ /obj/item/tank/jetpack/carbondioxide, /turf/simulated/floor/tiled/white, /area/horizon/storage/eva/expedition) +"cEs" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/loading/red{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) "cEz" = ( /obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ id = "rdoffice" @@ -20312,19 +20332,6 @@ /obj/structure/machinery/photocopier, /turf/simulated/floor/tiled/full, /area/horizon/command/bridge/cciaroom) -"cGO" = ( -/obj/structure/machinery/computer/rdconsole/robotics{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/black{ - dir = 9 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white, -/area/horizon/operations/machinist) "cGR" = ( /obj/structure/machinery/light/small{ dir = 1 @@ -20383,6 +20390,26 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/reinforced, /area/horizon/engineering/gravity_gen) +"cHd" = ( +/obj/item/stack/material/steel/full, +/obj/item/stack/material/steel/full, +/obj/item/stack/material/steel/full, +/obj/item/stack/material/steel/full, +/obj/item/stack/material/glass/full, +/obj/item/stack/material/glass/full, +/obj/item/stack/material/aluminium/full, +/obj/item/stack/material/aluminium/full, +/obj/item/stack/material/plasteel{ + amount = 20; + pixel_y = 4; + randpixel = 0 + }, +/obj/structure/closet/crate/drop, +/obj/effect/floor_decal/spline/plain/red{ + dir = 9 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/operations/machinist) "cHe" = ( /obj/effect/floor_decal/industrial/warning{ dir = 6 @@ -20545,24 +20572,6 @@ }, /turf/simulated/floor/tiled/white, /area/shuttle/hapt) -"cIu" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/command/heads/xo_desk) "cIx" = ( /obj/effect/floor_decal/corner/mauve{ dir = 6 @@ -21569,36 +21578,6 @@ /obj/structure/machinery/alarm/west, /turf/simulated/floor/tiled, /area/horizon/hallway/primary/deck_3/central) -"cPR" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/effect/floor_decal/corner_wide/brown{ - dir = 5 - }, -/obj/structure/machinery/button/switch/windowtint{ - dir = 4; - id = "workshopsurgery"; - pixel_x = 22; - pixel_y = -2 - }, -/obj/structure/machinery/light/small/floor{ - pixel_y = -16 - }, -/obj/structure/machinery/button/switch/holosign{ - dir = 4; - id = "workshop_surgery"; - pixel_x = 22; - pixel_y = 10 - }, -/obj/structure/bed/stool/chair/office/dark{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/operations/machinist/surgicalbay) "cPS" = ( /obj/structure/flora/ausbushes/leafybush, /turf/simulated/floor/exoplanet/grass, @@ -21711,6 +21690,19 @@ }, /turf/simulated/floor/holofloor/lino, /area/horizon/holodeck/source_theatre) +"cQD" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_2/starboard) "cQI" = ( /obj/structure/machinery/door/blast/regular/open{ dir = 2; @@ -21856,6 +21848,12 @@ }, /turf/simulated/floor/tiled, /area/horizon/hangar/auxiliary) +"cRp" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/meeting_room) "cRs" = ( /obj/effect/landmark/start{ name = "wizard" @@ -22152,13 +22150,6 @@ }, /turf/unsimulated/floor/dark, /area/antag/actor) -"cSK" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/service, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/service/hydroponics/garden) "cSO" = ( /obj/structure/table/reinforced/steel, /obj/random/desktoy{ @@ -23361,6 +23352,18 @@ }, /turf/simulated/floor/tiled, /area/horizon/operations/break_room) +"daS" = ( +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/meeting_room) "daU" = ( /obj/structure/machinery/porta_turret/cannon, /obj/effect/floor_decal/industrial/warning/full, @@ -23476,6 +23479,15 @@ /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, /area/horizon/shuttle/intrepid/main_compartment) +"dbI" = ( +/obj/structure/machinery/r_n_d/protolathe, +/obj/structure/machinery/camera{ + c_tag = "Operations - Machinist Workshop 3"; + network = list("Operations"); + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) "dbK" = ( /obj/structure/machinery/light, /turf/simulated/floor/tiled/dark/full, @@ -23870,29 +23882,12 @@ /obj/structure/table/reinforced/steel, /turf/simulated/floor/wood, /area/horizon/command/heads/chief) -"deA" = ( -/obj/effect/floor_decal/industrial/outline_straight/yellow{ - dir = 8 - }, -/obj/structure/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/machinist) "deB" = ( /obj/structure/railing/mapped{ dir = 8 }, /turf/simulated/open, /area/horizon/operations/office) -"deD" = ( -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille, -/obj/structure/machinery/door/firedoor, -/obj/structure/machinery/door/blast/shutters{ - id = "machinist_fab_shutters"; - name = "Machinist Workshop Garage Shutter" - }, -/turf/simulated/floor/plating, -/area/horizon/operations/machinist) "deG" = ( /obj/effect/floor_decal/spline/plain{ dir = 5 @@ -24267,22 +24262,6 @@ /obj/structure/lattice/catwalk/indoor, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/medical/cryo) -"dhb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/horizon/operations/machinist) "dhd" = ( /obj/structure/bed/stool/chair/office/dark{ dir = 4 @@ -25659,18 +25638,6 @@ /obj/structure/lattice, /turf/space, /area/horizon/exterior) -"dox" = ( -/obj/structure/noticeboard{ - dir = 1; - pixel_y = -29; - pixel_x = 2 - }, -/obj/structure/bed/stool/chair{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown/full, -/turf/simulated/floor/tiled, -/area/horizon/operations/machinist) "doU" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/atmospherics/binary/pump/on{ @@ -26611,21 +26578,6 @@ dir = 8 }, /area/centcom/holding) -"duA" = ( -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/machinist) "duC" = ( /obj/structure/machinery/light{ dir = 8 @@ -27100,6 +27052,21 @@ "dxi" = ( /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/horizon/engineering/storage_hard/aft) +"dxm" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/full{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/operations/machinist) "dxo" = ( /obj/structure/cable{ icon_state = "1-2" @@ -27173,6 +27140,18 @@ }, /turf/simulated/floor/tiled, /area/horizon/rnd/hallway) +"dxT" = ( +/obj/structure/table/reinforced/wood, +/obj/item/toy/desk/newtoncradle{ + pixel_x = -4; + pixel_y = 7 + }, +/obj/item/flashlight/lamp/green{ + pixel_x = 7; + pixel_y = 3 + }, +/turf/simulated/floor/carpet, +/area/horizon/command/heads/xo_office) "dxX" = ( /obj/structure/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -27324,10 +27303,6 @@ /obj/structure/machinery/smartfridge/foodheater, /turf/simulated/floor/tiled/dark/full, /area/horizon/service/kitchen) -"dyG" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor, -/area/horizon/maintenance/deck_3/aft/port) "dyJ" = ( /obj/effect/decal/fake_object/light_source/invisible{ light_color = "#C46518"; @@ -27410,6 +27385,13 @@ /obj/effect/floor_decal/industrial/outline/grey, /turf/simulated/floor/tiled/dark, /area/horizon/security/evidence_storage) +"dzt" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/service/starboard) "dzv" = ( /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled/dark/full, @@ -27475,19 +27457,6 @@ }, /turf/unsimulated/floor/wood, /area/antag/mercenary) -"dzP" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/machinist) "dzQ" = ( /obj/effect/floor_decal/industrial/outline/service, /turf/simulated/floor/tiled/dark/full, @@ -27887,24 +27856,6 @@ }, /turf/unsimulated/floor, /area/centcom/spawning) -"dCq" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/spline/fancy/wood, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/structure/coatrack{ - pixel_x = 6; - pixel_y = 1 - }, -/obj/structure/machinery/camera/network/command{ - c_tag = "Bridge - XO Office"; - dir = 1 - }, -/turf/simulated/floor/wood, -/area/horizon/command/heads/xo_office) "dCu" = ( /obj/structure/flora/ausbushes/sparsegrass, /turf/simulated/floor/grass/no_edge, @@ -28091,6 +28042,23 @@ }, /turf/simulated/floor/tiled, /area/horizon/stairwell/engineering/deck_2) +"dDx" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 8; + name = "Machinist Workshop"; + sortType = "Machinist Workshop" + }, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_2/starboard) "dDz" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 10 @@ -28182,15 +28150,6 @@ }, /turf/simulated/floor/holofloor/carpet, /area/horizon/holodeck/source_courtroom) -"dDO" = ( -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/machinist) "dDT" = ( /obj/structure/railing/mapped{ dir = 1 @@ -28427,18 +28386,6 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/wing/starboard) -"dFD" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/command/bridge/meeting_room) "dFI" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 9 @@ -28641,6 +28588,13 @@ /obj/effect/floor_decal/corner/brown/diagonal, /turf/simulated/floor/tiled/dark, /area/horizon/operations/mining_main/eva) +"dGW" = ( +/obj/structure/table/reinforced/steel, +/obj/structure/machinery/power/outlet{ + pixel_y = 3 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) "dGY" = ( /obj/effect/floor_decal/corner_wide/yellow{ dir = 9 @@ -28899,12 +28853,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/reactor/indra/monitoring) -"dIR" = ( -/obj/structure/noticeboard{ - pixel_y = 30 - }, -/turf/simulated/floor/carpet, -/area/horizon/command/heads/xo_office) "dIU" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -29111,12 +29059,6 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/medical/surgery) -"dKx" = ( -/obj/structure/machinery/conveyor{ - id = "Robocompo" - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/machinist) "dKy" = ( /obj/structure/closet/secure_closet/merchant, /turf/simulated/floor/tiled/dark, @@ -29385,6 +29327,18 @@ /obj/effect/floor_decal/corner/mauve/full, /turf/simulated/floor/tiled, /area/horizon/rnd/xenobiology) +"dMH" = ( +/obj/structure/machinery/camera{ + c_tag = "Operations - Machinist Workshop 2"; + network = list("Operations"); + dir = 1 + }, +/obj/structure/crate_shelf, +/obj/effect/floor_decal/spline/plain/red{ + dir = 1 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/operations/machinist) "dMI" = ( /obj/structure/tank_wall/phoron{ density = 0; @@ -29494,20 +29448,6 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, /area/horizon/shuttle/intrepid/port_compartment) -"dNB" = ( -/obj/structure/cable/green, -/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ - id = "xo_privacy_tint" - }, -/obj/structure/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor, -/area/horizon/command/heads/xo_desk) "dNC" = ( /obj/effect/floor_decal/corner/brown{ dir = 9 @@ -30644,6 +30584,12 @@ }, /turf/simulated/floor/plating, /area/merchant_station/warehouse) +"dVP" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/research) "dVS" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -30654,25 +30600,6 @@ }, /turf/simulated/floor/plating, /area/horizon/engineering/atmos/air) -"dVT" = ( -/obj/structure/machinery/cell_charger{ - pixel_y = 12; - pixel_x = -2 - }, -/obj/structure/table/steel, -/obj/effect/floor_decal/spline/plain/brown{ - dir = 4 - }, -/obj/item/radio/intercom/west, -/obj/structure/machinery/cell_charger{ - pixel_y = 3; - pixel_x = -2 - }, -/obj/structure/machinery/power/outlet{ - pixel_x = 10 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/machinist) "dWa" = ( /obj/effect/landmark/entry_point/fore{ name = "fore, brig communal" @@ -31541,31 +31468,6 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/command/heads/cmo) -"ebD" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/structure/machinery/camera/network/command{ - c_tag = "Bridge - XO Line"; - dir = 1 - }, -/obj/structure/table/standard, -/obj/structure/machinery/recharger{ - pixel_x = -8; - pixel_y = 8 - }, -/obj/item/toner, -/obj/item/toner, -/obj/item/paper_bin{ - pixel_x = 5; - pixel_y = 9 - }, -/obj/item/pen{ - pixel_y = 9; - pixel_x = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/command/bridge/upperdeck) "ebE" = ( /obj/effect/floor_decal/corner/mauve/diagonal, /obj/structure/cable/green{ @@ -32511,6 +32413,13 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/main/port) +"egF" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/auxatmos) "egG" = ( /obj/structure/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 @@ -32523,6 +32432,12 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/atmos/turbine) +"egN" = ( +/obj/effect/floor_decal/spline/plain/brown{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/operations/machinist) "egP" = ( /obj/structure/sign/nosmoking_1{ pixel_y = 32 @@ -32891,30 +32806,6 @@ /obj/structure/machinery/alarm/east, /turf/simulated/floor/tiled/dark/full, /area/horizon/service/bar) -"ejW" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/obj/structure/machinery/power/apc/south, -/obj/structure/cable/green, -/obj/structure/machinery/light_switch/west{ - dir = 4; - pixel_x = 22 - }, -/obj/item/towel_flat{ - pixel_x = -2; - pixel_y = 4; - name = "Ian's Bed"; - desc = "A dog blanket laid out on the floor; Ian prefers to sleep on the office chair."; - accent_color = "#336699"; - color = "#336699" - }, -/obj/item/toy/figure/corgi{ - pixel_x = -10 - }, -/mob/living/simple_animal/corgi/Ian, -/turf/simulated/floor/wood, -/area/horizon/command/heads/xo_office) "ejX" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/atmospherics/unary/vent_pump/on, @@ -33145,6 +33036,23 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/wing/port) +"elz" = ( +/obj/effect/floor_decal/corner_wide/brown/diagonal, +/obj/effect/floor_decal/spline/plain/corner/purple, +/obj/structure/platform_deco{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/operations/machinist/surgicalbay) "elH" = ( /obj/effect/shuttle_landmark/crescent/start, /turf/unsimulated/floor/plating, @@ -33481,6 +33389,12 @@ }, /turf/simulated/floor/holofloor/tiled/dark, /area/horizon/holodeck/source_boxingcourt) +"enA" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/starboard) "enB" = ( /obj/structure/cable{ icon_state = "4-8" @@ -33615,37 +33529,6 @@ /obj/structure/railing/mapped, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/reactor/indra/mainchamber) -"eoU" = ( -/obj/structure/table/reinforced/steel, -/obj/structure/machinery/power/apc/south, -/obj/structure/cable/green, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/item/paper_scanner, -/obj/item/stack/wrapping_paper{ - pixel_y = 4; - pixel_x = 6 - }, -/obj/item/stack/packageWrap, -/obj/item/destTagger{ - pixel_x = 13; - pixel_y = -2 - }, -/obj/item/clipboard{ - pixel_x = -4; - pixel_y = 3 - }, -/obj/item/hand_labeler{ - pixel_y = 8; - pixel_x = 1 - }, -/obj/item/paper/stickynotes/pad/random{ - pixel_x = 4; - pixel_y = -1 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/command/heads/xo_desk) "eoX" = ( /obj/structure/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, @@ -34689,23 +34572,6 @@ /obj/structure/table/reinforced/steel, /turf/simulated/floor/tiled/dark/full, /area/horizon/service/kitchen) -"ewp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_2/service/starboard) "ewq" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 8 @@ -35255,18 +35121,6 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/service/kitchen) -"ezv" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/obj/structure/platform_stairs/full{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/operations/machinist) "ezx" = ( /obj/structure/disposalpipe/junction{ icon_state = "pipe-j2" @@ -35560,26 +35414,6 @@ }, /turf/simulated/floor/holofloor/lino, /area/horizon/holodeck/source_chapel) -"eCc" = ( -/obj/structure/closet/crate, -/obj/item/stack/material/lead{ - amount = 10 - }, -/obj/item/stack/material/phoron{ - amount = 20 - }, -/obj/item/stack/material/uranium{ - amount = 10 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/railing/mapped/no_density/low{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/machinist) "eCg" = ( /obj/random/junk, /obj/effect/floor_decal/industrial/warning{ @@ -36505,12 +36339,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/storage_hard/upper) -"eHy" = ( -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 4 - }, -/turf/simulated/floor/carpet/rubber, -/area/horizon/operations/machinist) "eHz" = ( /obj/structure/table/wood, /turf/simulated/floor/carpet, @@ -36628,15 +36456,6 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/horizon/service/kitchen) -"eIu" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/structure/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/horizon/security/checkpoint2) "eIv" = ( /obj/effect/floor_decal/spline/plain{ dir = 9 @@ -37509,6 +37328,17 @@ /obj/effect/floor_decal/industrial/outline/emergency_closet, /turf/simulated/floor/carpet/rubber, /area/horizon/tcommsat/chamber) +"eQj" = ( +/obj/effect/floor_decal/corner_wide/brown/diagonal, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/operations/machinist/surgicalbay) "eQq" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ @@ -38280,6 +38110,20 @@ /obj/structure/sign/flag/scc, /turf/simulated/floor/tiled, /area/horizon/command/bridge/controlroom) +"eUC" = ( +/obj/structure/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_2/starboard) "eUP" = ( /obj/structure/machinery/door/firedoor, /obj/structure/grille, @@ -38593,24 +38437,6 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/carpet/rubber, /area/horizon/engineering/locker_room) -"eWQ" = ( -/obj/item/stack/cable_coil{ - pixel_x = -6 - }, -/obj/structure/table/steel, -/obj/effect/floor_decal/spline/plain/brown{ - dir = 4 - }, -/obj/structure/machinery/recharger{ - pixel_x = -6; - pixel_y = 10 - }, -/obj/item/robotanalyzer{ - pixel_y = 5; - pixel_x = 3 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/machinist) "eWU" = ( /obj/structure/machinery/portable_atmospherics/canister/oxygen, /turf/unsimulated/floor{ @@ -38675,11 +38501,24 @@ /obj/structure/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled/dark, /area/shuttle/mercenary) -"eXA" = ( -/obj/structure/table/rack, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_1/medical/cryo) +"eXv" = ( +/obj/structure/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/table/reinforced/steel, +/obj/structure/machinery/door/window/desk/northleft{ + req_access = list(57) + }, +/obj/structure/machinery/door/blast/shutters{ + dir = 2; + id = "xo_office_privacy_shutter" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/command/heads/xo_desk) "eXB" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden{ dir = 5 @@ -38799,6 +38638,13 @@ }, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior/no_shields) +"eYu" = ( +/obj/structure/machinery/mecha_part_fabricator{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) "eYv" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/machinery/atmospherics/portables_connector{ @@ -39217,6 +39063,19 @@ }, /turf/simulated/floor/tiled, /area/horizon/operations/office) +"fcf" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/north, +/obj/effect/floor_decal/spline/plain/corner/red{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/starboard) "fch" = ( /obj/effect/floor_decal/corner_wide/yellow{ dir = 5 @@ -39838,6 +39697,13 @@ }, /turf/simulated/floor/tiled, /area/horizon/hallway/primary/deck_3/starboard/docks) +"ffH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/operations/machinist) "ffJ" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -40756,17 +40622,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/stairwell/engineering/deck_2) -"fmK" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_3/security/starboard) "fmM" = ( /obj/structure/shuttle_part/mercenary/small{ icon_state = "0,5" @@ -41169,19 +41024,6 @@ /obj/structure/bed/stool/chair/plastic, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/wing/port/near) -"fpr" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/primary/deck_2/starboard) "fps" = ( /obj/structure/table/rack, /obj/item/tank/oxygen/red, @@ -41364,18 +41206,6 @@ }, /turf/simulated/floor/wood, /area/horizon/service/chapel/office) -"fqm" = ( -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ - id = "xo_office_tint" - }, -/turf/simulated/floor, -/area/horizon/command/heads/xo_office) "fqs" = ( /obj/effect/floor_decal/spline/plain{ dir = 10 @@ -42439,32 +42269,6 @@ icon_state = "dark_preview" }, /area/centcom/checkpoint/fore) -"fym" = ( -/obj/structure/machinery/atm{ - pixel_y = -10 - }, -/obj/structure/machinery/disposal/small/east, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/machinery/light_switch/west, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/effect/floor_decal/corner/dark_green/full, -/obj/structure/machinery/light/floor, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/command/heads/xo_desk) -"fyv" = ( -/obj/structure/cable/green, -/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ - id = "xo_privacy_tint" - }, -/turf/simulated/floor, -/area/horizon/command/heads/xo_desk) "fyw" = ( /obj/structure/machinery/door/airlock/glass_command{ dir = 1; @@ -42984,6 +42788,20 @@ dir = 4 }, /area/horizon/hangar/intrepid) +"fCP" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/machinery/disposal/small/north, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/horizon/command/heads/xo_office) "fCV" = ( /obj/effect/floor_decal/corner/beige{ dir = 5 @@ -43351,22 +43169,6 @@ /obj/structure/flora/ausbushes/lavendergrass, /turf/simulated/floor/exoplanet/grass/grove, /area/centcom/shared_dream) -"fFe" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/railing/mapped/no_density/low{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/horizon/operations/machinist) "fFi" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -43394,6 +43196,16 @@ /obj/structure/machinery/hologram/holopad, /turf/simulated/floor/lino/diamond, /area/horizon/service/mess_hall) +"fFw" = ( +/obj/structure/platform_deco{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain/red{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain/red, +/turf/simulated/floor/carpet/rubber, +/area/horizon/operations/machinist) "fFz" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 5 @@ -43848,15 +43660,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/storage/eva) -"fIC" = ( -/obj/item/reagent_containers/glass/bucket, -/obj/item/reagent_containers/glass/bucket, -/obj/effect/floor_decal/corner/purple{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/horizon/service/custodial) "fIE" = ( /obj/effect/floor_decal/corner/yellow{ dir = 6 @@ -44092,12 +43895,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/maintenance/deck_2/research) -"fKv" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/skipjack) "fKx" = ( /obj/structure/table/reinforced/steel, /obj/item/storage/toolbox/emergency{ @@ -44130,18 +43927,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/ai/chamber) -"fKP" = ( -/obj/structure/platform, -/obj/effect/floor_decal/corner_wide/black{ - dir = 10 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner_wide/black{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/operations/machinist) "fKS" = ( /obj/structure/heavy_vehicle_frame, /obj/structure/machinery/mech_recharger, @@ -44624,6 +44409,27 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/tcommsat/chamber) +"fNr" = ( +/obj/structure/platform_deco{ + dir = 4 + }, +/obj/structure/platform_deco{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/machinery/light/floor{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) "fNB" = ( /obj/structure/machinery/camera/network/crescent{ c_tag = "Crescent Departures"; @@ -44815,6 +44621,12 @@ icon_state = "dark_preview" }, /area/centcom/specops) +"fPn" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/service/port) "fPo" = ( /turf/simulated/floor/holofloor/beach/sand{ icon_state = "desert4" @@ -44903,6 +44715,12 @@ /obj/effect/map_effect/window_spawner/full/reinforced/firedoor, /turf/simulated/floor/tiled/dark/full, /area/horizon/medical/gen_treatment) +"fPG" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/hangar/port) "fPK" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 6 @@ -44946,6 +44764,13 @@ }, /turf/unsimulated/floor, /area/antag/raider) +"fQg" = ( +/obj/structure/machinery/power/outlet{ + pixel_y = 3 + }, +/obj/structure/table/reinforced/glass, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) "fQi" = ( /obj/item/modular_computer/console/preset/medical{ dir = 1 @@ -45769,6 +45594,24 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/legion) +"fUX" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/controlroom) "fVa" = ( /turf/simulated/wall/r_wall, /area/horizon/rnd/xenoarch/isolation_a) @@ -46258,21 +46101,6 @@ "fYU" = ( /turf/simulated/floor/wood, /area/horizon/command/bridge/meeting_room) -"fYV" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/full, -/area/horizon/hallway/primary/deck_2/starboard) "fZf" = ( /obj/structure/table/stone/marble, /obj/item/storage/box/fancy/donut{ @@ -47297,6 +47125,11 @@ /obj/effect/floor_decal/industrial/hatch_door/yellow, /turf/simulated/floor/tiled/full, /area/horizon/rnd/xenobiology) +"gfL" = ( +/obj/structure/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/heads/xo_desk) "gfP" = ( /obj/structure/lattice/catwalk/indoor/grate/dark, /obj/structure/platform_deco{ @@ -47519,6 +47352,18 @@ /obj/effect/map_effect/marker_helper/airlock/exterior, /turf/simulated/floor/tiled/dark/full, /area/horizon/shuttle/intrepid/main_compartment) +"ghW" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/starboard) "gid" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 10 @@ -47561,6 +47406,27 @@ icon_state = "beach" }, /area/horizon/holodeck/source_moghes) +"gij" = ( +/obj/structure/machinery/door/airlock/mining{ + name = "Workshop Surgical Theatre"; + req_access = list(29) + }, +/obj/effect/map_effect/door_helper/unres, +/obj/structure/machinery/holosign/surgery{ + id = "workshop_surgery" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist/surgicalbay) "gin" = ( /obj/structure/machinery/light, /turf/simulated/floor/reinforced, @@ -49086,6 +48952,19 @@ /obj/effect/floor_decal/industrial/hatch_door/yellow, /turf/simulated/floor/tiled/dark/full, /area/horizon/maintenance/deck_1/operations/starboard/far) +"grD" = ( +/obj/item/modular_computer/console/preset/command/account{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline_corner/security, +/obj/effect/floor_decal/industrial/outline_segment/security{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline_segment/security{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/command/heads/xo_office) "grG" = ( /obj/structure/closet/emcloset, /obj/effect/floor_decal/industrial/hatch/emergency_closet, @@ -49566,20 +49445,6 @@ /obj/structure/machinery/vending/coffee, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/hallway/fore) -"gvg" = ( -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/obj/structure/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch_door/operations{ - dir = 1 - }, -/obj/structure/machinery/door/blast/shutters{ - id = "workshop_garage"; - name = "Machinist Workshop Garage Shutter" - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/machinist) "gvh" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/railing/mapped, @@ -49613,25 +49478,6 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"gvC" = ( -/obj/item/modular_computer/console/preset/command/hop{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline_corner/security{ - dir = 1 - }, -/obj/structure/machinery/alarm/east, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline_segment/security{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline_segment/security{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/command/heads/xo_desk) "gvE" = ( /obj/effect/floor_decal/industrial/warning/full, /obj/effect/decal/cleanable/dirt, @@ -51086,13 +50932,6 @@ /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood, /area/horizon/rnd/xenoarch/presentation) -"gFE" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/effect/decal/cleanable/cobweb2, -/obj/structure/closet/crate, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_1/auxatmos) "gFJ" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 1 @@ -51118,6 +50957,18 @@ /obj/effect/floor_decal/industrial/hatch_door/yellow, /turf/simulated/floor/tiled/full, /area/horizon/medical/reception) +"gFN" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/operations/machinist) "gFS" = ( /obj/structure/machinery/door/airlock/external{ dir = 4 @@ -51269,6 +51120,27 @@ /obj/structure/machinery/light/small/floor, /turf/simulated/floor/lino, /area/horizon/service/chapel/main) +"gGF" = ( +/obj/structure/machinery/access_button{ + command = "cycle_interior"; + frequency = 1380; + master_tag = "centcom_shuttle_dock_airlock"; + name = "interior access button"; + pixel_x = -25; + pixel_y = -25; + req_access = list(13) + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/security/checkpoint2) "gGG" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 5 @@ -51484,6 +51356,19 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/command/bridge/minibar) +"gHO" = ( +/obj/structure/machinery/door/airlock/maintenance{ + dir = 4; + name = "Machinist Workshop Maintenance"; + req_access = list(29) + }, +/obj/effect/floor_decal/industrial/hatch_door/yellow, +/obj/structure/machinery/door/firedoor{ + req_one_access = list(24,11,67,73); + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/maintenance/deck_2/service/starboard) "gHP" = ( /obj/structure/table/reinforced/steel, /obj/effect/decal/cleanable/dirt, @@ -51514,13 +51399,6 @@ /obj/structure/machinery/door/firedoor, /turf/simulated/floor/tiled/dark/full, /area/horizon/service/custodial/auxiliary) -"gIg" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/horizon/operations/lobby) "gIi" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -51922,6 +51800,31 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/security/investigations_hallway) +"gKO" = ( +/obj/item/stack/material/lead{ + amount = 10 + }, +/obj/item/reagent_containers/weldpack, +/obj/item/portable_whiteboard, +/obj/item/paint_sprayer, +/obj/structure/closet/crate/tool, +/obj/item/storage/bag/circuits/basic, +/obj/item/integrated_electronics/wirer, +/obj/item/integrated_electronics/debugger{ + pixel_x = 2; + pixel_y = 7 + }, +/obj/item/stack/material/phoron{ + amount = 20 + }, +/obj/item/stack/material/uranium{ + amount = 10 + }, +/obj/effect/floor_decal/spline/plain/red{ + dir = 5 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/operations/machinist) "gKS" = ( /obj/effect/landmark/entry_point/starboard{ name = "starboard, medical head" @@ -51963,6 +51866,16 @@ }, /turf/unsimulated/floor/plating, /area/shuttle/transport1) +"gLn" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/machinery/light/small, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/starboard) "gLw" = ( /obj/effect/floor_decal/industrial/warning, /turf/unsimulated/floor/plating, @@ -52162,13 +52075,6 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/horizon/hangar/intrepid/interstitial) -"gMK" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_1/auxatmos) "gML" = ( /obj/effect/floor_decal/corner_wide/paleblue/diagonal{ dir = 8 @@ -52406,6 +52312,18 @@ /obj/effect/floor_decal/corner/yellow, /turf/simulated/floor/tiled/dark, /area/horizon/engineering/atmos) +"gOo" = ( +/obj/structure/table/reinforced/glass, +/obj/item/flashlight/lamp/off{ + pixel_x = -7; + pixel_y = 19 + }, +/obj/item/storage/slide_projector{ + pixel_x = 2; + pixel_y = 3 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/operations/machinist/surgicalbay) "gOs" = ( /obj/structure/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -52587,13 +52505,6 @@ }, /turf/unsimulated/floor/wood, /area/antag/actor) -"gPP" = ( -/obj/effect/floor_decal/industrial/outline_straight/yellow{ - dir = 10 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/machinist) "gPS" = ( /obj/structure/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -52611,6 +52522,30 @@ /obj/effect/floor_decal/industrial/warning/full, /turf/simulated/floor/plating, /area/horizon/engineering/bluespace_drive) +"gQc" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain/brown{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/operations/machinist) "gQh" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -52787,20 +52722,6 @@ icon_state = "8,0" }, /area/centcom/specops) -"gRp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/airlock/maintenance{ - name = "Deck 2 Stairwell Maintenance"; - req_one_access = list(12,22,25,67) - }, -/obj/effect/floor_decal/industrial/hatch_door/yellow{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/firedoor, -/obj/effect/map_effect/door_helper/unres, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/stairwell/starboard/deck_2) "gRu" = ( /obj/structure/bonfire/light_up, /turf/simulated/floor/beach/sand{ @@ -53583,6 +53504,16 @@ /obj/structure/window/shuttle/scc_space_ship, /turf/simulated/floor/plating, /area/horizon/security/brig) +"gWF" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/starboard) "gWN" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 10 @@ -55361,6 +55292,16 @@ }, /turf/simulated/floor/plating, /area/horizon/engineering/atmos) +"hiA" = ( +/obj/effect/floor_decal/spline/plain/corner/red, +/obj/effect/floor_decal/spline/plain/red{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/operations/machinist) "hiB" = ( /obj/structure/shuttle_part/mercenary/small{ icon_state = "8,3" @@ -55815,18 +55756,6 @@ /obj/structure/machinery/firealarm/west, /turf/simulated/floor/tiled/dark/full, /area/horizon/service/chapel/main) -"hlO" = ( -/obj/effect/floor_decal/corner/brown/full{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/operations/machinist) "hlP" = ( /obj/effect/floor_decal/corner_wide/green{ dir = 9 @@ -56265,6 +56194,36 @@ /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled, /area/horizon/maintenance/deck_2/research) +"hnD" = ( +/obj/structure/machinery/door/airlock/mining{ + dir = 4; + name = "Machinist Workshop"; + req_access = list(29); + id_tag = "workshop_door" + }, +/obj/effect/map_effect/door_helper/unres{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/machinery/door/firedoor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) "hnF" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -56375,16 +56334,6 @@ icon_state = "wood" }, /area/centcom/legion/hangar5) -"hop" = ( -/obj/structure/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/machinist) "hoq" = ( /obj/effect/floor_decal/spline/plain/black, /obj/structure/bed/stool/chair/office/dark{ @@ -56423,6 +56372,22 @@ /obj/structure/machinery/alarm/south, /turf/simulated/floor/plating, /area/horizon/operations/package_conveyors) +"hoz" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_2/starboard) "hoE" = ( /obj/effect/floor_decal/industrial/warning{ dir = 10 @@ -56737,19 +56702,6 @@ }, /turf/simulated/open, /area/horizon/medical/hallway/upper) -"hre" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled/full, -/area/horizon/hallway/primary/deck_2/starboard) "hrf" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden, /obj/effect/decal/cleanable/dirt, @@ -56797,27 +56749,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/service/chapel/office) -"hrw" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/horizon/command/heads/xo_office) "hry" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ @@ -57007,6 +56938,10 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, /area/horizon/service/mess_hall) +"hsB" = ( +/obj/structure/machinery/hologram/holopad, +/turf/simulated/floor/carpet, +/area/horizon/command/heads/xo_office) "hsD" = ( /obj/effect/floor_decal/corner/mauve{ dir = 9 @@ -57836,13 +57771,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/service/hydroponics/lower) -"hxa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/machinist) "hxb" = ( /obj/structure/bed/stool/chair{ name = "uncomfortable chair"; @@ -58233,6 +58161,20 @@ }, /turf/simulated/floor/tiled, /area/horizon/service/hydroponics/lower) +"hzX" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/machinery/disposal/small/west, +/obj/effect/floor_decal/spline/plain/corner/brown, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/operations/machinist) "hAb" = ( /turf/unsimulated/floor{ icon_state = "wood" @@ -59206,6 +59148,26 @@ }, /turf/simulated/floor/plating, /area/horizon/shuttle/canary) +"hGs" = ( +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/red, +/obj/structure/machinery/mech_recharger, +/obj/structure/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) "hGt" = ( /turf/simulated/wall, /area/horizon/maintenance/deck_1/medical/cryo) @@ -59290,14 +59252,6 @@ /obj/structure/machinery/light/small/floor, /turf/simulated/floor/wood, /area/horizon/service/bar) -"hHf" = ( -/obj/structure/machinery/door/blast/shutters/open{ - id = "mech_bay_shutter"; - name = "Mech Bay Shutters" - }, -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/machinist) "hHg" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -59499,18 +59453,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/stairwell/starboard/deck_1) -"hIw" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/item/reagent_containers/glass/bucket, -/obj/structure/machinery/atmospherics/pipe/simple/hidden, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/rnd/xenobiology/xenoflora) "hIy" = ( /obj/structure/machinery/atmospherics/pipe/simple/visible/black, /obj/structure/machinery/atmospherics/pipe/simple/visible/cyan{ @@ -59566,6 +59508,16 @@ }, /turf/simulated/floor/tiled, /area/horizon/hallway/primary/deck_3/central) +"hIQ" = ( +/obj/structure/platform, +/obj/effect/floor_decal/corner_wide/brown/diagonal, +/obj/effect/floor_decal/spline/plain/purple, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/extinguisher_cabinet/east, +/turf/simulated/floor/tiled/white, +/area/horizon/operations/machinist/surgicalbay) "hIS" = ( /obj/effect/floor_decal/spline/plain{ dir = 4 @@ -59630,6 +59582,22 @@ }, /turf/unsimulated/floor, /area/centcom/bar) +"hJx" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_2/starboard) "hJy" = ( /obj/structure/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -59736,18 +59704,6 @@ }, /turf/unsimulated/floor, /area/centcom/holding) -"hKc" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/obj/structure/engineer_maintenance/electric{ - dir = 1 - }, -/obj/structure/engineer_maintenance/pipe{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/operations/machinist) "hKh" = ( /obj/structure/window/reinforced{ dir = 1; @@ -59789,6 +59745,16 @@ }, /turf/simulated/floor/reinforced/airless, /area/horizon/engineering/reactor/indra/mainchamber) +"hKt" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/wood, +/area/horizon/command/heads/xo_office) "hKu" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 @@ -60122,21 +60088,6 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled/dark/full, /area/horizon/maintenance/deck_1/main/port) -"hMw" = ( -/obj/item/modular_computer/console/preset/command/hop{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline_corner/security{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline_segment/security{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/outline_segment/security{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/command/heads/xo_office) "hMC" = ( /obj/effect/floor_decal/industrial/warning{ dir = 6 @@ -61263,6 +61214,19 @@ /obj/structure/table/wood, /turf/simulated/floor/lino, /area/merchant_station) +"hUP" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/item/reagent_containers/glass/bucket, +/obj/structure/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/rnd/xenobiology/xenoflora) "hUR" = ( /obj/structure/machinery/door/window/northright{ name = "dispensary"; @@ -61351,6 +61315,22 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/engineering/storage/tech) +"hWd" = ( +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ + id = "xo_privacy_tint" + }, +/obj/structure/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor, +/area/horizon/command/heads/xo_desk) "hWe" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden, /obj/structure/railing/mapped{ @@ -61467,30 +61447,6 @@ }, /turf/simulated/floor/plating, /area/horizon/engineering/storage/lower) -"hWL" = ( -/obj/structure/table/reinforced/wood, -/obj/item/paper_bin{ - pixel_y = 3; - pixel_x = 4 - }, -/obj/item/stamp/denied{ - pixel_x = -7; - pixel_y = 6 - }, -/obj/item/stamp/xo{ - pixel_x = -7 - }, -/obj/item/folder/sec{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/item/pen/multi{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/structure/machinery/newscaster/security_unit/north, -/turf/simulated/floor/carpet, -/area/horizon/command/heads/xo_office) "hWP" = ( /turf/simulated/wall/r_wall, /area/horizon/service/hydroponics/hazard) @@ -61532,6 +61488,29 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"hXh" = ( +/obj/structure/table/reinforced/glass, +/obj/item/paper_bin{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/item/pen/fountain/black{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/structure/machinery/button/remote/blast_door{ + pixel_y = -4; + id = "machinist_surgery_shutters"; + pixel_x = 8; + name = "Surgical Theatre Viewing Shutters"; + dir = 9 + }, +/obj/item/paper/stickynotes/pad/random{ + pixel_x = 6; + pixel_y = 9 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/operations/machinist/surgicalbay) "hXo" = ( /obj/effect/floor_decal/corner/lime{ dir = 6 @@ -61820,6 +61799,16 @@ /obj/structure/machinery/light, /turf/simulated/floor/tiled/white, /area/horizon/medical/surgery) +"hZh" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/sign/radiation{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/maintenance/deck_2/aft) "hZi" = ( /obj/effect/floor_decal/industrial/hatch/operations, /obj/structure/machinery/conveyor{ @@ -61963,13 +61952,6 @@ }, /turf/simulated/floor/exoplanet/grass/grove, /area/centcom/shared_dream) -"iah" = ( -/obj/effect/floor_decal/industrial/outline_straight/yellow{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/machinist) "iai" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -62080,6 +62062,22 @@ /obj/effect/spider/stickyweb, /turf/simulated/floor/exoplanet/barren/raskara, /area/centcom/shared_dream) +"iaU" = ( +/obj/structure/machinery/camera/network/engineering{ + c_tag = "Engineering - Deck 2 - Aft Auxiliary Atmospherics"; + dir = 1 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/drone_fabrication) "ibi" = ( /obj/structure/machinery/atmospherics/portables_connector{ dir = 4 @@ -62150,6 +62148,13 @@ }, /turf/simulated/floor/tiled, /area/horizon/rnd/hallway/secondary) +"ibu" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/horizon/operations/lobby) "ibw" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -62244,11 +62249,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/hangar/airstation) -"ibT" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/lattice/catwalk/indoor/grate/white, -/turf/simulated/floor/plating, -/area/horizon/operations/machinist) "ibU" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, @@ -63167,6 +63167,13 @@ }, /turf/simulated/floor/tiled, /area/horizon/operations/office) +"ihG" = ( +/obj/effect/floor_decal/corner_wide/brown/diagonal, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/operations/machinist/surgicalbay) "ihI" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -63287,13 +63294,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/rnd/hallway) -"iiE" = ( -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/horizon/operations/machinist) "iiI" = ( /obj/effect/floor_decal/industrial/warning/cee{ dir = 4 @@ -63388,6 +63388,15 @@ /obj/effect/floor_decal/corner/mauve/diagonal, /turf/simulated/floor/tiled/dark, /area/horizon/storage/eva) +"ijx" = ( +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ + id = "xo_conference_tint" + }, +/turf/simulated/floor, +/area/horizon/command/heads/xo_office) "ijD" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -63799,6 +63808,14 @@ /obj/effect/floor_decal/corner/white/diagonal, /turf/simulated/floor/marble/dark, /area/horizon/holodeck/source_luceism) +"ilD" = ( +/obj/structure/machinery/optable, +/obj/structure/machinery/light, +/obj/effect/floor_decal/spline/plain/red{ + dir = 5 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/operations/machinist/surgicalbay) "ilI" = ( /obj/effect/floor_decal/corner/mauve/diagonal, /obj/effect/floor_decal/corner/mauve{ @@ -64071,6 +64088,47 @@ /obj/structure/railing/mapped, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/reactor/indra/mainchamber) +"ioi" = ( +/obj/structure/table/reinforced/steel, +/obj/structure/machinery/button/remote/blast_door{ + dir = 5; + id = "workshop_garage"; + name = "Machinist Workshop Garage Shutters"; + pixel_x = -6; + pixel_y = 11 + }, +/obj/structure/machinery/button/remote/airlock{ + dir = 5; + id = "workshop_door"; + name = "Machinist Workshop Door"; + pixel_y = 11; + pixel_x = 3 + }, +/obj/structure/machinery/button/remote/blast_door{ + dir = 5; + id = "shutters_deck2_workshopdesk"; + name = "Machinist Workshop Desk Shutters"; + pixel_x = -6; + pixel_y = -2 + }, +/obj/structure/machinery/button/remote/blast_door{ + dir = 5; + id = "mech_bay_shutter"; + name = "Machinist Bay Window Shutters"; + pixel_x = 3; + pixel_y = -2 + }, +/obj/structure/machinery/light_switch/east{ + pixel_y = 19; + pixel_x = 20 + }, +/obj/structure/machinery/ringer/east{ + id = "workshop_ringer"; + req_access = list(29); + department = "Operations" + }, +/turf/simulated/floor/tiled/full, +/area/horizon/operations/machinist) "ioj" = ( /obj/structure/disposalpipe/segment{ icon_state = "pipe-c" @@ -64150,6 +64208,29 @@ }, /turf/simulated/floor/holofloor/carpet/rubber, /area/horizon/holodeck/source_gym) +"iow" = ( +/obj/effect/floor_decal/corner/purple{ + dir = 9 + }, +/obj/structure/machinery/light_switch{ + dir = 8; + pixel_x = -22; + pixel_y = 23 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/full, +/area/horizon/service/custodial/auxiliary) "ioz" = ( /obj/structure/machinery/door/airlock/centcom{ name = "Detention Wing"; @@ -64245,17 +64326,6 @@ /obj/structure/railing/mapped, /turf/simulated/open, /area/horizon/operations/office) -"ioY" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/horizon/operations/machinist) "ipa" = ( /obj/effect/floor_decal/corner_wide/green{ dir = 5 @@ -65213,30 +65283,6 @@ /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor/wood, /area/antag/burglar) -"ivN" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/light/floor{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/horizon/command/bridge/meeting_room) "ivT" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -66073,6 +66119,12 @@ }, /turf/simulated/floor/plating, /area/horizon/shuttle/quark/cargo_hold) +"iAZ" = ( +/obj/structure/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/custodial/disposals/deck_1) "iBa" = ( /obj/structure/bed/stool/chair{ dir = 4 @@ -66560,6 +66612,20 @@ /obj/structure/machinery/door/firedoor, /turf/simulated/floor/plating, /area/horizon/command/bridge/meeting_room) +"iEt" = ( +/obj/effect/floor_decal/corner/dark_green, +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/structure/machinery/light, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/starboard) "iEC" = ( /obj/effect/floor_decal/spline/plain{ dir = 4 @@ -67138,6 +67204,12 @@ }, /turf/simulated/floor/tiled, /area/horizon/command/bridge/upperdeck) +"iID" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/starboard) "iIH" = ( /obj/structure/machinery/power/breakerbox/activated{ RCon_tag = "Operations Substation" @@ -67173,6 +67245,16 @@ /obj/random/maintenance_junk_or_loot, /turf/simulated/floor/tiled/dark/full, /area/horizon/maintenance/deck_3/security/port) +"iIZ" = ( +/obj/effect/floor_decal/corner_wide/brown/diagonal, +/obj/effect/floor_decal/spline/plain/purple{ + dir = 8 + }, +/obj/structure/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/operations/machinist) "iJa" = ( /obj/effect/floor_decal/corner/brown{ dir = 10 @@ -67589,13 +67671,6 @@ "iLL" = ( /turf/simulated/wall/r_wall, /area/horizon/repoffice/consular_one) -"iLM" = ( -/obj/effect/floor_decal/industrial/outline_straight/yellow{ - dir = 6 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/machinist) "iLR" = ( /turf/simulated/wall/r_wall, /area/horizon/engineering/atmos) @@ -67777,6 +67852,18 @@ "iNk" = ( /turf/simulated/wall, /area/horizon/hallway/primary/deck_1/central) +"iNl" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/heads/xo_desk) "iNn" = ( /obj/structure/table/stone/marble, /obj/structure/machinery/reagentgrinder{ @@ -68009,10 +68096,6 @@ icon_state = "desert" }, /area/centcom/shared_dream) -"iOK" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/horizon/operations/machinist) "iON" = ( /obj/effect/floor_decal/corner/purple/full{ dir = 4 @@ -68392,6 +68475,13 @@ icon_state = "desert" }, /area/centcom/shared_dream) +"iQW" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/service, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/hydroponics/garden) "iQX" = ( /turf/simulated/floor/holofloor/grass{ icon = 'icons/turf/flooring/exoplanet/moghes.dmi'; @@ -68642,6 +68732,32 @@ "iSS" = ( /turf/simulated/abyss, /area/antag/ninja) +"iTc" = ( +/obj/structure/machinery/newscaster/north, +/obj/structure/filingcabinet/filingcabinet{ + pixel_x = 10; + pixel_y = 1 + }, +/obj/structure/machinery/papershredder{ + pixel_x = -6 + }, +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 1 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/ringer/north{ + dir = 4; + pixel_y = 0; + pixel_x = 10; + department = "Security"; + id = "security_ringer"; + req_access = null; + req_one_access = list(1) + }, +/turf/simulated/floor/tiled, +/area/horizon/security/office) "iTd" = ( /obj/effect/floor_decal/corner_wide/paleblue{ dir = 6 @@ -68844,6 +68960,18 @@ }, /turf/unsimulated/floor/plating, /area/antag/mercenary) +"iUC" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/controlroom) "iUH" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/atmospherics/pipe/simple/hidden, @@ -69286,30 +69414,6 @@ }, /turf/simulated/floor/bluegrid/server, /area/horizon/rnd/server) -"iXP" = ( -/obj/structure/table/reinforced/steel, -/obj/item/paper_bin{ - pixel_y = 3; - pixel_x = -4 - }, -/obj/item/folder/sec{ - pixel_x = -4; - pixel_y = 3 - }, -/obj/item/pen/multi{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/structure/machinery/recharger{ - pixel_x = 9; - pixel_y = 3 - }, -/obj/structure/machinery/firealarm/north{ - pixel_y = 29; - pixel_x = -6 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/command/heads/xo_desk) "iXX" = ( /obj/structure/lattice/catwalk/indoor, /obj/structure/machinery/atmospherics/pipe/zpipe/down/aux{ @@ -69663,12 +69767,6 @@ }, /turf/space/transit/north, /area/template_noop) -"iZz" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/horizon/command/bridge/meeting_room) "iZB" = ( /obj/effect/floor_decal/spline/fancy/wood/corner, /turf/simulated/floor/wood, @@ -69893,10 +69991,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/maintenance/deck_2/wing/starboard/nacelle) -"jaP" = ( -/obj/structure/sign/flag/scc/unmovable, -/turf/simulated/wall/r_wall, -/area/horizon/command/heads/xo_desk) "jaR" = ( /obj/effect/floor_decal/corner/green/full, /turf/unsimulated/floor, @@ -70155,15 +70249,6 @@ dir = 4 }, /area/horizon/hangar/operations) -"jco" = ( -/obj/structure/closet/secure_closet/xo, -/obj/effect/floor_decal/industrial/outline/security, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/machinery/alarm/south, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/command/heads/xo_office) "jcp" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -70383,6 +70468,23 @@ }, /turf/unsimulated/floor, /area/centcom/holding) +"jeR" = ( +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ + id = "xo_privacy_tint" + }, +/obj/structure/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor, +/area/horizon/command/heads/xo_desk) "jeW" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/effect/floor_decal/spline/plain/corner/green, @@ -70873,27 +70975,6 @@ }, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior/no_shields) -"jia" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/industrial/outline_straight/service{ - dir = 8 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/service/bar) "jib" = ( /obj/structure/shuttle_part/mercenary/small{ icon_state = "4,1" @@ -71485,15 +71566,6 @@ /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/horizon/engineering/equipment) -"jlJ" = ( -/obj/effect/floor_decal/industrial/outline_straight/yellow{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/machinist) "jlN" = ( /obj/effect/floor_decal/corner/mauve/full{ dir = 1 @@ -72487,6 +72559,20 @@ /obj/vehicle/train/cargo/engine/pussywagon, /turf/simulated/floor/tiled/dark, /area/horizon/service/custodial) +"jsy" = ( +/obj/structure/machinery/conveyor{ + dir = 6; + id = "Robocompo"; + reversed = 1 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/platform{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) "jsC" = ( /obj/structure/machinery/door/firedoor, /obj/effect/floor_decal/industrial/hatch_door/yellow{ @@ -72617,23 +72703,6 @@ "jtk" = ( /turf/simulated/wall/shuttle/scc, /area/horizon/shuttle/intrepid/buffet) -"jtm" = ( -/obj/structure/table/reinforced/steel, -/obj/structure/machinery/door/window/desk/northright{ - name = "Machinist Workshop Desk"; - req_one_access = list(29) - }, -/obj/structure/machinery/door/firedoor, -/obj/random/pottedplant_small{ - pixel_x = 10; - pixel_y = -9 - }, -/obj/structure/machinery/door/blast/shutters{ - id = "shutters_deck2_workshopdesk"; - name = "Machinist Workshop Desk Shutter" - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/machinist) "jtn" = ( /obj/structure/foamedmetal, /obj/structure/shuttle_part/scc_space_ship{ @@ -73217,12 +73286,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/shuttle/skipjack) -"jxi" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/turf/simulated/floor, -/area/horizon/maintenance/deck_3/aft/port) "jxs" = ( /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/gunmetal, @@ -73456,16 +73519,6 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/rnd/chemistry) -"jyY" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/horizon/operations/machinist) "jzd" = ( /obj/structure/shuttle/engine/propulsion{ icon_state = "propulsion_r"; @@ -73747,14 +73800,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/shuttle/mining) -"jAT" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/floor_decal/industrial/loading/yellow, -/turf/simulated/floor/tiled, -/area/horizon/stairwell/starboard/deck_2) "jAW" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/aux{ dir = 4 @@ -73855,12 +73900,6 @@ /obj/random/junk, /turf/simulated/floor/tiled/dark/full, /area/horizon/maintenance/deck_1/auxatmos) -"jBE" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/primary/deck_2/starboard) "jBK" = ( /obj/effect/floor_decal/corner/blue{ dir = 4 @@ -73935,6 +73974,14 @@ }, /turf/simulated/floor/marble, /area/horizon/holodeck/source_trinary) +"jCg" = ( +/obj/structure/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/item/clothing/head/welding, +/obj/item/weldingtool, +/turf/simulated/floor/plating, +/area/shuttle/skipjack) "jCh" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 5 @@ -74092,6 +74139,15 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/operations/starboard/far) +"jDf" = ( +/obj/item/modular_computer/console/preset/supply/machinist{ + dir = 4 + }, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/operations/machinist) "jDh" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/industrial/warning, @@ -74958,14 +75014,6 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"jJA" = ( -/obj/structure/crate_shelf, -/obj/effect/floor_decal/spline/plain/brown{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/machinist) "jJE" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 9 @@ -75150,6 +75198,15 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor, /area/horizon/hallway/primary/deck_3/port/docks) +"jKX" = ( +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ + id = "xo_office_tint" + }, +/turf/simulated/floor, +/area/horizon/command/heads/xo_office) "jLa" = ( /obj/item/stack/material/cyborg/steel, /turf/unsimulated/floor, @@ -75416,17 +75473,6 @@ }, /turf/simulated/floor/plating, /area/horizon/engineering/atmos/turbine) -"jNe" = ( -/obj/structure/machinery/door/blast/shutters{ - id = "workshop_garage"; - name = "Machinist Workshop Garage Shutter" - }, -/obj/structure/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch_door/operations{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/machinist) "jNf" = ( /obj/structure/tank_wall{ icon_state = "m-4" @@ -76458,32 +76504,6 @@ /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, /area/horizon/hallway/primary/deck_1/central) -"jTa" = ( -/obj/structure/machinery/newscaster/north, -/obj/structure/filingcabinet/filingcabinet{ - pixel_x = 10; - pixel_y = 1 - }, -/obj/structure/machinery/papershredder{ - pixel_x = -6 - }, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 1 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/ringer/north{ - dir = 4; - pixel_y = 0; - pixel_x = 10; - department = "Consular B"; - id = "security_ringer"; - req_access = null; - req_one_access = list(1) - }, -/turf/simulated/floor/tiled, -/area/horizon/security/office) "jTh" = ( /obj/structure/machinery/conveyor_switch/oneway{ id = "merchant_shipping"; @@ -76697,6 +76717,17 @@ /obj/effect/floor_decal/corner/dark_blue/diagonal, /turf/simulated/floor/tiled/dark, /area/horizon/security/checkpoint) +"jUw" = ( +/obj/effect/floor_decal/corner/dark_green/diagonal, +/obj/effect/floor_decal/industrial/arrow/yellow, +/obj/effect/floor_decal/spline/plain/red{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline_straight/yellow{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/starboard) "jUx" = ( /obj/structure/machinery/door/airlock/external{ dir = 4 @@ -76806,6 +76837,21 @@ }, /turf/unsimulated/floor, /area/centcom/legion) +"jVm" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/operations/machinist) "jVo" = ( /obj/structure/table/standard, /obj/item/deck/cards, @@ -77104,6 +77150,9 @@ }, /turf/unsimulated/floor/plating, /area/shuttle/transport1) +"jXm" = ( +/turf/simulated/wall/r_wall, +/area/horizon/command/heads/xo_desk) "jXo" = ( /obj/effect/floor_decal/corner/mauve/diagonal, /obj/structure/machinery/light/floor, @@ -77216,25 +77265,6 @@ /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/marble, /area/horizon/holodeck/source_trinary) -"jYf" = ( -/obj/effect/floor_decal/corner_wide/brown{ - dir = 10 - }, -/obj/structure/table/steel, -/obj/structure/machinery/power/outlet{ - pixel_y = -2; - pixel_x = -8 - }, -/obj/item/robotanalyzer{ - pixel_y = 8; - pixel_x = 2 - }, -/obj/item/storage/toolbox/electrical{ - pixel_x = 7 - }, -/obj/structure/machinery/firealarm/east, -/turf/simulated/floor/tiled/white, -/area/horizon/operations/machinist/surgicalbay) "jYg" = ( /obj/structure/machinery/atmospherics/pipe/manifold/visible/purple, /obj/structure/lattice/catwalk/indoor/grate/dark, @@ -77348,25 +77378,6 @@ /obj/random/dirt_75, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/wing/port/nacelle) -"jZb" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/wood, -/area/horizon/command/bridge/meeting_room) "jZe" = ( /obj/structure/railing/mapped{ dir = 1 @@ -77444,6 +77455,13 @@ }, /turf/unsimulated/floor/dark_monotile, /area/antag/mercenary) +"jZy" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) "jZz" = ( /obj/structure/window/reinforced/crescent{ dir = 1 @@ -77472,6 +77490,16 @@ icon_state = "dark_preview" }, /area/antag/mercenary) +"jZR" = ( +/obj/effect/floor_decal/corner_wide/brown/diagonal, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/bed/stool/chair/office/dark{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/operations/machinist/surgicalbay) "jZS" = ( /obj/structure/machinery/porta_turret, /obj/structure/cable/green{ @@ -77637,6 +77665,26 @@ /obj/item/reagent_containers/blood/OMinus, /turf/simulated/floor/tiled/white, /area/horizon/medical/icu) +"kaZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/horizon/operations/machinist) "kba" = ( /obj/item/stack/material/marble{ amount = 30 @@ -78985,6 +79033,32 @@ /obj/structure/machinery/alarm/east, /turf/simulated/floor, /area/horizon/maintenance/deck_3/aft/starboard) +"kjE" = ( +/obj/structure/table/reinforced/steel, +/obj/structure/machinery/requests_console/east{ + name = "Machinist Requests Console"; + department = "Machinist Workshop"; + departmentType = 2; + pixel_x = 16; + pixel_y = 4 + }, +/obj/item/paper_bin{ + pixel_x = 6; + pixel_y = 15 + }, +/obj/item/pen/black{ + pixel_x = 6; + pixel_y = 16 + }, +/obj/item/stack/packageWrap{ + pixel_x = -1 + }, +/obj/item/destTagger{ + pixel_y = 8; + pixel_x = -4 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/operations/machinist) "kjI" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -79322,18 +79396,6 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/research) -"kmi" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/primary/deck_2/starboard) "kmj" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 10 @@ -80309,6 +80371,25 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/service/mess_hall) +"ksI" = ( +/obj/structure/machinery/atm{ + pixel_y = -10 + }, +/obj/structure/machinery/disposal/small/east, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/machinery/light_switch/west, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/floor_decal/corner/dark_green/full, +/obj/structure/machinery/light/floor, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/heads/xo_desk) "ksL" = ( /obj/effect/floor_decal/corner/white/diagonal, /obj/effect/floor_decal/spline/plain{ @@ -80471,6 +80552,18 @@ }, /turf/simulated/floor, /area/horizon/maintenance/deck_3/aft/holodeck) +"ktM" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain/corner/red{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain/red{ + dir = 10 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/operations/machinist) "ktR" = ( /obj/structure/machinery/light{ dir = 4 @@ -80586,10 +80679,6 @@ }, /turf/unsimulated/floor, /area/centcom/holding) -"kuq" = ( -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/horizon/operations/machinist) "kus" = ( /obj/effect/floor_decal/corner/yellow{ dir = 5 @@ -80717,6 +80806,16 @@ }, /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_chapel) +"kuZ" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/arrow/yellow, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/starboard) "kvb" = ( /obj/structure/machinery/door/firedoor{ req_one_access = list(24,11,67,73); @@ -81203,6 +81302,40 @@ }, /turf/simulated/floor/tiled, /area/horizon/crew/chargebay) +"kxR" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/service/starboard) +"kxU" = ( +/obj/structure/machinery/door/firedoor{ + req_one_access = list(24,11,67,73); + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch_door/yellow, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/machinery/door/airlock/command{ + dir = 4; + name = "Executive Officer's Office"; + req_access = list(57) + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/command/heads/xo_office) "kxV" = ( /obj/effect/decal/cleanable/generic, /obj/effect/decal/fake_object{ @@ -81577,6 +81710,29 @@ /obj/structure/flora/ausbushes/ppflowers, /turf/simulated/floor/holofloor/grass, /area/horizon/holodeck/source_battlemonsters) +"kzR" = ( +/obj/structure/machinery/controlhub/xo_office/desk{ + pixel_y = -3; + pixel_x = -6 + }, +/obj/structure/table/reinforced/steel, +/obj/structure/machinery/requests_console/north{ + announcementConsole = 1; + department = "Executive Officer's Desk"; + departmentType = 5; + name = "XO's Desk Requests Console"; + pixel_y = 32 + }, +/obj/structure/machinery/power/outlet{ + pixel_y = 4; + pixel_x = 8 + }, +/obj/structure/machinery/vending/encryption{ + pixel_y = 32; + pixel_x = -23 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/command/heads/xo_desk) "kzS" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -81707,19 +81863,25 @@ }, /turf/unsimulated/floor, /area/centcom/spawning) -"kAN" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/warning/corner, -/obj/structure/disposalpipe/segment{ +"kAG" = ( +/obj/structure/bed/stool/chair/office/bridge{ dir = 4 }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/primary/deck_2/starboard) +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Bridge Crew" + }, +/obj/structure/machinery/camera/network/command{ + c_tag = "Bridge - Conference room"; + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/meeting_room) "kAV" = ( /obj/structure/machinery/atmospherics/pipe/manifold/visible/black{ dir = 8 @@ -81938,6 +82100,20 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/service/mess_hall) +"kBz" = ( +/obj/structure/railing/mapped, +/obj/structure/sign/poster/engineering/tg_10{ + pixel_y = 32; + pixel_x = 1 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/structure/machinery/light/floor{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/operations/machinist/surgicalbay) "kBE" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 9 @@ -81982,18 +82158,6 @@ /obj/effect/floor_decal/industrial/warning/corner, /turf/simulated/floor/plating, /area/horizon/engineering/bluespace_drive) -"kBP" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/horizon/operations/machinist) "kBS" = ( /obj/effect/floor_decal/corner/mauve{ dir = 5 @@ -82489,53 +82653,6 @@ }, /turf/simulated/floor/tiled, /area/merchant_station) -"kFl" = ( -/obj/effect/decal/fake_object{ - dir = 4; - icon = 'icons/effects/props/holodeck/konyang/32x32.dmi'; - icon_state = "plank"; - name = "floor planks" - }, -/obj/effect/decal/fake_object{ - desc = "A rudimentary, poorly utilized railing mechanism. Stepping over it is easy."; - dir = 4; - icon = 'icons/effects/props/holodeck/konyang/32x32.dmi'; - icon_state = "rope-railing"; - name = "short rope" - }, -/obj/effect/decal/fake_object{ - desc = "A rudimentary, poorly utilized railing mechanism. Stepping over it is easy."; - dir = 4; - icon = 'icons/effects/props/holodeck/konyang/32x32.dmi'; - icon_state = "post"; - name = "post"; - pixel_y = -4 - }, -/obj/effect/decal/fake_object{ - desc = "A lovely umbrella for those rainy Konyanger days."; - dir = 4; - icon = 'icons/effects/props/holodeck/konyang/64x64.dmi'; - icon_state = "umbrella"; - name = "traditional Konyanger umbrella"; - pixel_x = -1; - pixel_y = 4 - }, -/obj/effect/decal/fake_object{ - dir = 4; - icon = 'icons/effects/props/holodeck/konyang/32x32.dmi'; - icon_state = "plank_shadow"; - name = "floor planks" - }, -/obj/structure/machinery/door/window/holowindoor{ - dir = 1 - }, -/turf/simulated/floor/holofloor/wood{ - dir = 6; - icon = 'icons/turf/flooring/exoplanet/konyang.dmi'; - icon_state = "water"; - name = "shallow water" - }, -/area/horizon/holodeck/source_konyang) "kFq" = ( /obj/structure/bed/stool/chair/padded/brown{ dir = 4 @@ -83089,19 +83206,6 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/unsimulated/floor, /area/centcom/spawning) -"kIy" = ( -/obj/structure/machinery/light, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/primary/deck_2/starboard) "kIE" = ( /obj/effect/floor_decal/spline/plain, /obj/structure/railing/mapped{ @@ -83503,27 +83607,6 @@ /obj/structure/machinery/firealarm/east, /turf/simulated/floor/tiled, /area/horizon/crew/fitness/gym) -"kLn" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/industrial/hatch_door/operations{ - dir = 1 - }, -/obj/effect/map_effect/door_helper/unres, -/obj/structure/machinery/holosign/surgery{ - id = "workshop_surgery" - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/machinery/door/airlock/mining{ - name = "Workshop Surgical Theatre"; - req_access = list(29) - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/machinist/surgicalbay) "kLq" = ( /obj/structure/platform, /turf/simulated/floor/tiled/dark, @@ -83572,20 +83655,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/crew/vacantoffice) -"kLv" = ( -/obj/effect/decal/cleanable/cobweb2, -/obj/item/pipe_meter{ - pixel_x = 2; - pixel_y = 5 - }, -/obj/item/pipe_meter{ - pixel_x = 8 - }, -/obj/item/pipe_meter{ - pixel_x = -8 - }, -/turf/simulated/floor/carpet/rubber, -/area/horizon/engineering/atmos/storage_maintenance) "kLw" = ( /obj/structure/ship_weapon_dummy, /turf/space, @@ -84040,6 +84109,30 @@ /obj/item/stock_parts/manipulator, /turf/simulated/floor/tiled/dark, /area/horizon/rnd/lab) +"kPh" = ( +/obj/structure/table/reinforced/steel, +/obj/item/paper_bin{ + pixel_y = 3; + pixel_x = -4 + }, +/obj/item/folder/sec{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/item/pen/multi{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/structure/machinery/recharger{ + pixel_x = 9; + pixel_y = 3 + }, +/obj/structure/machinery/firealarm/north{ + pixel_y = 29; + pixel_x = -6 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/command/heads/xo_desk) "kPl" = ( /obj/structure/cable/green{ icon_state = "2-8" @@ -84805,13 +84898,6 @@ "kVd" = ( /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_chapel) -"kVi" = ( -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/obj/structure/lattice/catwalk/indoor/grate/white, -/turf/simulated/floor/plating, -/area/horizon/operations/machinist) "kVl" = ( /obj/structure/machinery/atmospherics/pipe/simple/visible/yellow, /turf/simulated/floor/plating, @@ -85373,13 +85459,12 @@ }, /turf/simulated/floor/tiled, /area/horizon/storage/primary) -"kYJ" = ( -/obj/effect/floor_decal/industrial/outline_straight/yellow, -/obj/structure/disposalpipe/segment{ - dir = 1 +"kYG" = ( +/obj/structure/bed/stool/chair/padded/black{ + dir = 8 }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/machinist) +/turf/simulated/floor/carpet, +/area/horizon/command/heads/xo_office) "kYP" = ( /obj/structure/table/standard, /obj/item/paper_scanner{ @@ -85957,13 +86042,6 @@ }, /turf/simulated/floor/wood, /area/horizon/rnd/hallway/secondary) -"lcu" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/obj/structure/machinery/recharge_station, -/turf/simulated/floor/wood, -/area/horizon/hallway/primary/deck_2/starboard) "lcx" = ( /obj/structure/shuttle_part/scc/scout{ icon_state = "7,4" @@ -86021,16 +86099,6 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/wing/starboard) -"ldd" = ( -/obj/structure/platform_stairs/full, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/operations/machinist/surgicalbay) "ldf" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -86317,6 +86385,22 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/syndicate_elite) +"leG" = ( +/obj/structure/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/operations/machinist) "leJ" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -86909,6 +86993,17 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/rnd/xenological) +"liV" = ( +/obj/effect/floor_decal/corner_wide/brown/diagonal, +/obj/effect/floor_decal/spline/plain/purple{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/machinery/vending/wardrobe/robo_wardrobe, +/turf/simulated/floor/tiled/white, +/area/horizon/operations/machinist/surgicalbay) "liX" = ( /obj/effect/map_effect/window_spawner/full/reinforced/firedoor, /turf/simulated/floor/tiled/dark/full, @@ -86982,10 +87077,6 @@ }, /turf/simulated/floor/holofloor/carpet, /area/horizon/holodeck/source_courtroom) -"ljm" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/turf/simulated/floor/tiled, -/area/horizon/maintenance/deck_3/aft/holodeck) "ljn" = ( /obj/effect/floor_decal/spline/fancy/wood/cee{ dir = 1 @@ -87150,29 +87241,6 @@ }, /turf/simulated/floor/plating, /area/horizon/command/bridge/meeting_room) -"ljS" = ( -/obj/structure/table/reinforced/steel, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/machinery/camera/network/command{ - c_tag = "Bridge - XO Desk"; - dir = 8 - }, -/obj/structure/machinery/chemical_dispenser/coffee/full{ - pixel_y = 8; - pixel_x = 2 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup/scc{ - pixel_x = -1; - pixel_y = 2 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup/scc/alt{ - pixel_x = 7; - pixel_y = 2 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/command/heads/xo_desk) "ljU" = ( /obj/structure/machinery/conveyor{ dir = 5; @@ -87629,6 +87697,17 @@ }, /turf/simulated/floor/tiled, /area/horizon/engineering/bluespace_drive) +"lnK" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/decal/cleanable/cobweb2, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/maintenance/deck_2/wing/starboard) "lnL" = ( /obj/structure/machinery/portable_atmospherics/canister/oxygen, /obj/item/tank/air, @@ -87971,19 +88050,6 @@ /obj/random/maintenance_junk_or_loot, /turf/simulated/floor/tiled/dark, /area/horizon/maintenance/deck_1/teleporter) -"lqa" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/spline/fancy/wood, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/horizon/command/heads/xo_office) "lqb" = ( /obj/structure/flora/stump/log, /obj/effect/floor_decal/spline/plain{ @@ -88174,6 +88240,17 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/rnd/xenoarch/atrium) +"lrk" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_3/security/starboard) "lrm" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -88744,16 +88821,6 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/hangar/starboard) -"luo" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/railing/mapped/no_density/low{ - dir = 8 - }, -/obj/structure/railing/mapped/no_density/low, -/turf/simulated/floor/plating, -/area/horizon/operations/machinist) "lup" = ( /obj/effect/floor_decal/corner/brown{ dir = 9 @@ -88809,10 +88876,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/shuttle/intrepid/junction_compartment) -"luM" = ( -/obj/structure/machinery/hologram/holopad, -/turf/simulated/floor/carpet, -/area/horizon/command/heads/xo_office) "luR" = ( /obj/structure/machinery/conveyor{ dir = 8; @@ -88842,16 +88905,6 @@ icon_state = "wood" }, /area/antag/raider) -"lva" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/sign/radiation{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/maintenance/deck_2/aft) "lvg" = ( /obj/structure/coatrack{ pixel_x = 7; @@ -89053,24 +89106,6 @@ "lwL" = ( /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/horizon/repoffice/representative_two) -"lwO" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/machinery/button/remote/blast_door{ - dir = 1; - id = "workshop_garage"; - name = "Machinist Workshop Garage Shutters"; - pixel_x = -23; - pixel_y = 24 - }, -/turf/simulated/floor/plating, -/area/horizon/operations/machinist) "lwW" = ( /obj/structure/flora/bush/grove, /turf/simulated/floor/exoplanet/grass/grove, @@ -89360,6 +89395,14 @@ icon_state = "desert" }, /area/centcom/shared_dream) +"lzw" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/machinery/alarm/north, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/maintenance/deck_2/cargo_compartment) "lzA" = ( /obj/structure/machinery/light/small, /obj/vehicle/train/cargo/engine, @@ -89502,17 +89545,6 @@ }, /turf/space/transit/north, /area/template_noop) -"lAv" = ( -/obj/structure/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/horizon/hallway/primary/deck_2/starboard) "lAw" = ( /obj/structure/table/wood, /obj/item/taperecorder, @@ -91329,17 +91361,6 @@ }, /turf/unsimulated/floor, /area/centcom/spawning) -"lKQ" = ( -/obj/structure/platform_stairs/full, -/obj/structure/disposalpipe/segment, -/obj/structure/railing/mapped/no_density/low{ - dir = 4 - }, -/obj/structure/railing/mapped/no_density/low{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/operations/machinist) "lKR" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -91653,18 +91674,6 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/atmos) -"lNv" = ( -/obj/item/radio/intercom/south, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/structure/extinguisher_cabinet/south, -/turf/simulated/floor/tiled, -/area/horizon/security/hallway) "lNz" = ( /obj/random/dirt_75, /obj/structure/trash_pile, @@ -91718,6 +91727,22 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/reactor/supermatter/waste) +"lNS" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/floor_decal/spline/plain/red{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain/red{ + dir = 4 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/operations/machinist) "lNU" = ( /obj/effect/landmark/newplayer_start, /turf/unsimulated/floor, @@ -91958,19 +91983,10 @@ }, /turf/simulated/floor/wood/maple, /area/horizon/holodeck/source_cafe) -"lQw" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/dark, -/area/horizon/command/heads/xo_desk) +"lQC" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port) "lQM" = ( /obj/structure/table/standard, /obj/structure/machinery/requests_console/west{ @@ -92792,6 +92808,17 @@ /obj/structure/machinery/porta_turret, /turf/simulated/floor/tiled/dark/full, /area/horizon/storage/secure/tech_vault) +"lXL" = ( +/obj/structure/machinery/conveyor{ + id = "Robocompo" + }, +/obj/structure/machinery/camera{ + c_tag = "Operations - Machinist Workshop 1"; + network = list("Operations"); + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) "lXO" = ( /obj/structure/machinery/mech_recharger, /obj/effect/floor_decal/corner/dark_blue{ @@ -92917,16 +92944,16 @@ }, /turf/simulated/floor/lino, /area/merchant_station) -"lYJ" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 +"lYC" = ( +/obj/structure/machinery/papershredder{ + pixel_x = -6 }, -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/filingcabinet/filingcabinet{ + pixel_x = 9; + pixel_y = 1 }, -/obj/structure/extinguisher_cabinet/north, -/turf/simulated/floor/tiled, -/area/horizon/hallway/primary/deck_2/starboard) +/turf/simulated/floor/tiled/dark/full, +/area/horizon/command/heads/xo_office) "lYK" = ( /obj/item/hullbeacon/red, /obj/structure/sign/securearea{ @@ -92985,9 +93012,6 @@ "lYY" = ( /turf/simulated/floor/tiled/dark, /area/horizon/engineering/atmos/propulsion/starboard) -"lZa" = ( -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/horizon/operations/machinist) "lZd" = ( /obj/structure/platform_deco{ icon_state = "ledge_deco" @@ -93094,12 +93118,6 @@ }, /turf/simulated/floor/shuttle/dark_blue, /area/horizon/shuttle/escape_pod/pod4) -"lZn" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor, -/area/horizon/maintenance/deck_3/aft/starboard) "lZo" = ( /obj/structure/cable{ icon_state = "1-2" @@ -93133,14 +93151,6 @@ }, /turf/simulated/floor/plating, /area/horizon/engineering/atmos/air) -"lZB" = ( -/obj/structure/machinery/lapvend, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 7 - }, -/obj/structure/machinery/alarm/south, -/turf/simulated/floor/wood, -/area/horizon/command/bridge/meeting_room) "lZF" = ( /obj/structure/grille, /obj/structure/machinery/door/firedoor, @@ -93321,22 +93331,6 @@ /obj/effect/floor_decal/spline/plain/black, /turf/simulated/floor/carpet/rubber, /area/horizon/tcommsat/entrance) -"maF" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/horizon/hallway/primary/deck_2/starboard) "maQ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/fake_object{ @@ -93888,6 +93882,17 @@ icon_state = "carpet14-10" }, /area/centcom/legion/hangar5) +"meO" = ( +/obj/effect/floor_decal/corner_wide/brown/diagonal, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/operations/machinist/surgicalbay) "meP" = ( /obj/effect/floor_decal/corner/brown{ dir = 10 @@ -94198,6 +94203,31 @@ icon_state = "6,7" }, /area/horizon/shuttle/canary) +"mgO" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/structure/machinery/camera/network/command{ + c_tag = "Bridge - XO Line"; + dir = 1 + }, +/obj/structure/table/standard, +/obj/structure/machinery/recharger{ + pixel_x = -8; + pixel_y = 8 + }, +/obj/item/toner, +/obj/item/toner, +/obj/item/paper_bin{ + pixel_x = 5; + pixel_y = 9 + }, +/obj/item/pen{ + pixel_y = 9; + pixel_x = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/upperdeck) "mgT" = ( /obj/structure/lattice/catwalk, /obj/structure/machinery/atmospherics/pipe/zpipe/down/supply{ @@ -94846,6 +94876,14 @@ /obj/structure/machinery/firealarm/east, /turf/simulated/floor/tiled/dark, /area/horizon/engineering/atmos) +"mkA" = ( +/obj/effect/floor_decal/industrial/outline/research, +/obj/item/radio/intercom/west, +/obj/structure/machinery/computer/rdconsole/robotics/terminal{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) "mkG" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/effect/floor_decal/spline/plain/green{ @@ -94909,6 +94947,27 @@ "mkV" = ( /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_theatre) +"mkY" = ( +/obj/effect/floor_decal/industrial/hatch_door/yellow, +/obj/structure/machinery/door/firedoor{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/maintenance{ + name = "Deck 2 Stairwell Maintenance"; + req_one_access = list(12,22,25,28,67,29); + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/maintenance/deck_2/service/starboard) "mle" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -96511,6 +96570,26 @@ }, /turf/simulated/floor/tiled, /area/horizon/command/bridge/bridge_crew) +"mwp" = ( +/obj/structure/railing/mapped, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/operations/machinist/surgicalbay) "mwx" = ( /obj/effect/floor_decal/corner/purple{ dir = 6 @@ -97117,6 +97196,24 @@ /obj/structure/table/reinforced/steel, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/shields) +"mBE" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/arrow/yellow{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/starboard) "mBL" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, @@ -97455,6 +97552,10 @@ }, /turf/simulated/floor/reinforced, /area/horizon/rnd/xenobiology) +"mEe" = ( +/obj/structure/table/reinforced/steel, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) "mEg" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -98194,6 +98295,19 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/rnd/xenoarch/storage) +"mHW" = ( +/obj/effect/floor_decal/corner_wide/brown/diagonal, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/sink/kitchen{ + dir = 4; + name = "sink"; + pixel_x = -21 + }, +/obj/structure/machinery/firealarm/west, +/turf/simulated/floor/tiled/white, +/area/horizon/operations/machinist/surgicalbay) "mHX" = ( /obj/effect/floor_decal/industrial/warning, /obj/structure/machinery/alarm/north, @@ -98251,22 +98365,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/reactor/indra/smes) -"mIr" = ( -/obj/structure/machinery/camera/network/engineering{ - c_tag = "Engineering - Deck 2 - Aft Auxiliary Atmospherics"; - dir = 1 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/engineering/drone_fabrication) "mIs" = ( /obj/effect/floor_decal/corner/lime/diagonal, /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -98526,25 +98624,6 @@ /obj/structure/machinery/light_switch/west, /turf/simulated/floor/tiled/white, /area/horizon/medical/gen_treatment) -"mKo" = ( -/obj/item/robot_parts/r_arm{ - pixel_y = 1; - pixel_x = 10 - }, -/obj/item/portable_whiteboard{ - pixel_y = 2; - pixel_x = -3 - }, -/obj/structure/table/steel, -/obj/effect/floor_decal/spline/plain/brown{ - dir = 1 - }, -/obj/item/storage/toolbox/electrical{ - pixel_y = 12; - pixel_x = -3 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/machinist) "mKp" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 9 @@ -98725,6 +98804,14 @@ }, /turf/simulated/floor/tiled, /area/horizon/operations/loading) +"mLN" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/machinery/door/blast/shutters{ + id = "workshop_garage"; + name = "Machinist Workshop Garage Shutter" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) "mLS" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 5 @@ -99624,18 +99711,6 @@ /obj/structure/machinery/alarm/east, /turf/simulated/floor/tiled/white, /area/horizon/engineering/washroom) -"mSf" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/command/heads/xo_desk) "mSh" = ( /obj/effect/floor_decal/corner/green/diagonal, /obj/structure/bed/stool, @@ -99646,25 +99721,6 @@ /obj/structure/window/reinforced, /turf/simulated/floor/tiled/white, /area/horizon/crew/fitness/changing) -"mSj" = ( -/obj/item/integrated_electronics/debugger{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/integrated_electronics/wirer{ - pixel_x = -9; - pixel_y = 8 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/table/steel, -/obj/effect/floor_decal/spline/plain/brown{ - dir = 8 - }, -/obj/structure/railing/mapped/no_density/low, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/machinist) "mSl" = ( /obj/structure/machinery/atmospherics/portables_connector{ dir = 1 @@ -99672,6 +99728,19 @@ /obj/structure/machinery/portable_atmospherics/canister/air/airlock, /turf/simulated/floor, /area/horizon/ai/upload_foyer) +"mSm" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/spline/fancy/wood, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/horizon/command/heads/xo_office) "mSo" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -99713,6 +99782,15 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/plating, /area/horizon/engineering/atmos/air) +"mSD" = ( +/obj/structure/platform, +/obj/effect/floor_decal/corner_wide/brown/diagonal, +/obj/effect/floor_decal/spline/plain/purple, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/operations/machinist/surgicalbay) "mSE" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 @@ -99810,6 +99888,16 @@ }, /turf/simulated/floor/tiled, /area/horizon/command/bridge/controlroom) +"mTD" = ( +/obj/item/storage/box/fancy/tray/machinist{ + pixel_y = 6 + }, +/obj/structure/table/reinforced/glass, +/obj/effect/floor_decal/spline/plain/red{ + dir = 1 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/operations/machinist/surgicalbay) "mTF" = ( /obj/item/hoist_kit, /obj/item/ladder_mobile{ @@ -99900,27 +99988,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/hallway/primary/deck_3/starboard) -"mUm" = ( -/obj/structure/closet/walllocker/medical{ - desc = "It's a wall-mounted locker full of SBS and a little blood for augmented crewmembers."; - name = "SBS closet"; - pixel_x = -32 - }, -/obj/item/reagent_containers/blood/sbs, -/obj/item/reagent_containers/blood/sbs, -/obj/item/reagent_containers/blood/OMinus, -/obj/effect/floor_decal/corner_wide/brown{ - dir = 10 - }, -/obj/structure/machinery/button/remote/blast_door{ - pixel_y = -19; - id = "machinist_surgery_shutters"; - pixel_x = 4; - name = "Surgery Viewing Shutters" - }, -/obj/structure/machinery/iv_drip, -/turf/simulated/floor/tiled/white, -/area/horizon/operations/machinist/surgicalbay) "mUn" = ( /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/horizon/ai/upload_foyer) @@ -100018,14 +100085,6 @@ }, /turf/simulated/floor/bluegrid, /area/horizon/ai/chamber) -"mVg" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/random/dirt_75, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor, -/area/horizon/maintenance/deck_2/wing/port/far) "mVm" = ( /obj/structure/railing/mapped, /turf/unsimulated/floor{ @@ -100539,6 +100598,13 @@ }, /turf/unsimulated/floor/carpet, /area/centcom/specops) +"mYY" = ( +/obj/structure/machinery/recharge_station, +/obj/effect/floor_decal/spline/plain/red{ + dir = 6 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/operations/machinist/surgicalbay) "mZa" = ( /obj/structure/closet/secure_closet{ req_access = list(150) @@ -100694,6 +100760,25 @@ /obj/structure/platform/ledge, /turf/simulated/open, /area/horizon/hallway/primary/deck_3/central) +"mZG" = ( +/obj/effect/floor_decal/corner/mauve/full, +/obj/structure/machinery/button/remote/airlock{ + id = "xeno_entrance_int_a"; + name = "Xenobiology External Access Bolts"; + pixel_y = 3; + req_access = list(55); + specialfunctions = 4; + dir = 8; + pixel_x = -22; + desiredstate = 1 + }, +/obj/structure/machinery/camera/network/research{ + c_tag = "Research - Xenobiology Entrance"; + dir = 1; + network = list("Research","Xeno_Bio") + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenobiology) "mZI" = ( /obj/structure/shuttle_part/tcfl{ icon_state = "17,0" @@ -100870,22 +100955,6 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/medical/reception) -"naE" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/junction, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/command/heads/xo_desk) "naO" = ( /obj/structure/holostool{ dir = 1 @@ -101043,6 +101112,18 @@ /obj/structure/railing/mapped, /turf/simulated/floor/grass/no_edge, /area/horizon/service/cafeteria) +"nca" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/operations/machinist) "ncb" = ( /obj/effect/floor_decal/corner/paleblue/full, /obj/structure/railing/mapped{ @@ -101061,6 +101142,20 @@ /obj/effect/floor_decal/corner/dark_green/diagonal, /turf/simulated/floor/tiled, /area/horizon/hangar/auxiliary) +"nci" = ( +/obj/effect/floor_decal/corner_wide/brown/diagonal, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/operations/machinist/surgicalbay) "nck" = ( /obj/structure/table/rack, /obj/item/clothing/under/color/green, @@ -101769,6 +101864,24 @@ /obj/random/contraband, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/hangar/starboard) +"ngg" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/spline/fancy/wood, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/coatrack{ + pixel_x = 6; + pixel_y = 1 + }, +/obj/structure/machinery/camera/network/command{ + c_tag = "Bridge - XO Office"; + dir = 1 + }, +/turf/simulated/floor/wood, +/area/horizon/command/heads/xo_office) "ngj" = ( /obj/effect/floor_decal/industrial/hatch/red, /turf/simulated/floor/reinforced/airless, @@ -102009,12 +102122,6 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/dark/full, /area/horizon/service/chapel/office) -"nhP" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor, -/area/horizon/maintenance/deck_3/aft/starboard) "nhS" = ( /obj/structure/disposalpipe/segment, /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -102709,6 +102816,18 @@ }, /turf/simulated/floor/carpet/rubber, /area/horizon/command/bridge/controlroom) +"nnm" = ( +/obj/structure/machinery/papershredder{ + pixel_x = -5 + }, +/obj/structure/filingcabinet/filingcabinet{ + pixel_x = 10; + pixel_y = 1 + }, +/obj/structure/machinery/light, +/obj/item/radio/intercom/east, +/turf/simulated/floor/carpet/rubber, +/area/horizon/operations/machinist/surgicalbay) "nnG" = ( /obj/effect/floor_decal/spline/plain{ dir = 4 @@ -102731,6 +102850,13 @@ icon_state = "white" }, /area/centcom/legion) +"noc" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/auxatmos) "nog" = ( /obj/random/pottedplant, /obj/effect/floor_decal/corner_wide/lime{ @@ -103020,6 +103146,10 @@ /obj/structure/machinery/recharger, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/reactor/supermatter/monitoring) +"npY" = ( +/obj/effect/floor_decal/industrial/outline/service, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/hydroponics) "npZ" = ( /obj/effect/overlay/palmtree_l, /turf/simulated/floor/beach/sand{ @@ -103525,11 +103655,6 @@ }, /turf/simulated/floor, /area/horizon/maintenance/deck_3/aft/port/far) -"ntJ" = ( -/obj/structure/machinery/mech_recharger, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/machinist) "ntL" = ( /obj/structure/table/standard, /obj/item/firing_pin/test_range, @@ -103659,6 +103784,18 @@ /obj/item/material/folding_table, /turf/simulated/floor/tiled/dark, /area/horizon/maintenance/deck_2/wing/port/nacelle) +"nuC" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/starboard) "nuL" = ( /obj/effect/floor_decal/corner/dark_green/diagonal, /obj/structure/cable/green{ @@ -103805,14 +103942,6 @@ /obj/structure/cable/green, /turf/simulated/floor/tiled/dark/full, /area/horizon/service/custodial/disposals/deck_1) -"nwe" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/random/dirt_75, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/maintenance/deck_2/operations) "nwj" = ( /turf/simulated/wall, /area/horizon/operations/break_room) @@ -104173,6 +104302,12 @@ }, /turf/simulated/floor/tiled, /area/horizon/stairwell/starboard/deck_3) +"nyU" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/carpet, +/area/horizon/command/heads/xo_office) "nza" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 5 @@ -104463,18 +104598,6 @@ /obj/structure/machinery/bluespace_beacon, /turf/simulated/floor/tiled/dark, /area/horizon/engineering/break_room) -"nBa" = ( -/obj/effect/landmark/start{ - name = "Machinist" - }, -/obj/structure/bed/stool/chair/office/dark{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/horizon/operations/machinist) "nBc" = ( /obj/effect/floor_decal/corner_wide/lime/diagonal, /obj/effect/floor_decal/industrial/warning{ @@ -104665,6 +104788,19 @@ icon_state = "dark_preview" }, /area/centcom/holding) +"nCc" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/spline/plain/corner/red{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain/red{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/operations/machinist) "nCd" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 5 @@ -104734,20 +104870,6 @@ "nCw" = ( /turf/simulated/floor/marble/dark, /area/horizon/holodeck/source_luceism) -"nCx" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/obj/item/clothing/head/welding, -/obj/item/weldingtool, -/turf/simulated/floor/plating, -/area/shuttle/skipjack) -"nCz" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/effect/floor_decal/industrial/outline/red, -/obj/structure/machinery/firealarm/south, -/turf/simulated/floor/tiled, -/area/horizon/crew/emergency_closet/deck_2/starboard) "nCB" = ( /obj/structure/railing/mapped, /turf/simulated/floor/reinforced/airless, @@ -104956,29 +105078,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/shuttle/mining) -"nDy" = ( -/obj/structure/machinery/controlhub/xo_office/desk{ - pixel_y = -3; - pixel_x = -6 - }, -/obj/structure/table/reinforced/steel, -/obj/structure/machinery/requests_console/north{ - announcementConsole = 1; - department = "Executive Officer's Desk"; - departmentType = 5; - name = "XO's Desk Requests Console"; - pixel_y = 32 - }, -/obj/structure/machinery/power/outlet{ - pixel_y = 4; - pixel_x = 8 - }, -/obj/structure/machinery/vending/encryption{ - pixel_y = 32; - pixel_x = -23 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/command/heads/xo_desk) "nDA" = ( /obj/effect/decal/fake_object{ dir = 4; @@ -105751,6 +105850,16 @@ }, /turf/simulated/floor, /area/horizon/hallway/primary/deck_3/starboard/docks) +"nIC" = ( +/obj/structure/sign/directions/prop{ + dir = 4; + pixel_y = 24 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/storage_maintenance) "nIF" = ( /turf/simulated/wall, /area/horizon/security/washroom) @@ -106052,6 +106161,19 @@ "nKi" = ( /turf/simulated/floor/tiled/full, /area/horizon/engineering/hallway/fore) +"nKk" = ( +/obj/item/modular_computer/console/preset/command/account{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline_corner/security, +/obj/effect/floor_decal/industrial/outline_segment/security{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline_segment/security{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/command/heads/xo_desk) "nKl" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 8 @@ -106865,14 +106987,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/hallway/primary/deck_3/central) -"nQt" = ( -/obj/item/reagent_containers/glass/bucket{ - amount_per_transfer_from_this = 50 - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/holding) "nQw" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -107652,6 +107766,25 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/security/investigators_office) +"nVX" = ( +/obj/item/modular_computer/console/preset/command/hop{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline_corner/security{ + dir = 1 + }, +/obj/structure/machinery/alarm/east, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline_segment/security{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline_segment/security{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/command/heads/xo_desk) "nVY" = ( /obj/structure/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -107715,17 +107848,6 @@ /obj/structure/lattice/catwalk/indoor, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/wing/starboard/auxatmos) -"nWF" = ( -/obj/structure/machinery/photocopier, -/obj/structure/machinery/firealarm/north{ - pixel_y = 37 - }, -/obj/structure/machinery/recharger/wallcharger{ - pixel_x = 5; - pixel_y = 20 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/command/heads/xo_office) "nWM" = ( /obj/effect/floor_decal/corner/dark_blue/diagonal, /obj/structure/cable{ @@ -108113,11 +108235,6 @@ "nZN" = ( /turf/simulated/floor/holofloor/carpet/rubber, /area/horizon/holodeck/source_basketball) -"nZV" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/machinery/alarm/north, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_1/main/starboard) "nZW" = ( /obj/effect/step_trigger/thrower/shuttle/northwest, /turf/space/transit/east, @@ -108470,17 +108587,6 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_3/security/starboard) -"oca" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/effect/floor_decal/corner/dark_blue/full, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/machinery/disposal/small/east, -/turf/simulated/floor/tiled, -/area/horizon/security/hallway) "ocb" = ( /obj/structure/table/wood, /obj/item/modular_computer/laptop/preset/security/hos{ @@ -108616,12 +108722,6 @@ /obj/item/holo/practicesword/holorapier, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_boxingcourt) -"ods" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_2/service/port) "odx" = ( /obj/structure/machinery/door/blast/shutters{ dir = 2; @@ -109426,6 +109526,18 @@ }, /turf/simulated/floor/plating, /area/shuttle/transport1) +"oip" = ( +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ + id = "xo_office_tint" + }, +/turf/simulated/floor, +/area/horizon/command/heads/xo_office) "oiq" = ( /obj/structure/shuttle/engine/heater, /obj/structure/window/borosilicate/reinforced{ @@ -109519,6 +109631,12 @@ /obj/structure/machinery/light, /turf/simulated/floor/tiled, /area/horizon/service/custodial) +"oiP" = ( +/obj/structure/bed/stool/chair/office/bridge{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/horizon/command/heads/xo_office) "oiQ" = ( /obj/structure/cable{ icon_state = "1-2" @@ -109884,6 +110002,16 @@ }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) +"olq" = ( +/obj/structure/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/effect/floor_decal/spline/plain/red{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/starboard) "olu" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -109957,12 +110085,6 @@ icon_state = "wood" }, /area/centcom/bar) -"olI" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden/red{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/service/custodial/disposals/deck_1) "olJ" = ( /obj/item/reagent_containers/food/condiment/flour{ pixel_x = -4; @@ -110102,17 +110224,6 @@ /obj/structure/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/dark, /area/horizon/engineering/atmos) -"omS" = ( -/obj/effect/floor_decal/corner/brown/full{ - dir = 1 - }, -/obj/structure/machinery/requests_console/east{ - name = "Machinist Requests Console"; - department = "Machinist Workshop"; - departmentType = 2 - }, -/turf/simulated/floor/tiled, -/area/horizon/operations/machinist) "omU" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/machinery/light/small{ @@ -110142,6 +110253,21 @@ }, /turf/simulated/floor/plating, /area/horizon/engineering/atmos/air) +"ong" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-c" + }, +/obj/structure/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/heads/xo_desk) "oni" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -110544,12 +110670,6 @@ }, /turf/unsimulated/floor, /area/centcom/evac) -"opM" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/maintenance/deck_2/research) "opP" = ( /obj/structure/table/rack, /obj/item/storage/box/syndie_kit/chameleon, @@ -110899,6 +111019,30 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/service/hydroponics) +"orJ" = ( +/obj/structure/platform_stairs/full/east_west_cap, +/obj/structure/platform/cutout{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/machinery/light_switch/north{ + pixel_x = 4; + pixel_y = 24 + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled/dark, +/area/horizon/operations/machinist/surgicalbay) "orN" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 6 @@ -111465,6 +111609,9 @@ }, /turf/unsimulated/floor, /area/centcom/legion) +"ovB" = ( +/turf/simulated/wall/r_wall, +/area/horizon/command/heads/xo_office) "ovG" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -111661,13 +111808,6 @@ /obj/structure/machinery/alarm/north, /turf/simulated/floor/carpet, /area/horizon/command/heads/captain) -"owZ" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/horizon/operations/machinist) "oxc" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, @@ -112016,19 +112156,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/rnd/hallway/secondary) -"ozL" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_2/service/starboard) "ozQ" = ( /obj/effect/map_effect/window_spawner/full/reinforced/indestructible, /turf/unsimulated/floor/plating, @@ -112218,12 +112345,6 @@ "oAJ" = ( /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/horizon/engineering/bluespace_drive) -"oAR" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/command/heads/xo_desk) "oBb" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -112691,6 +112812,34 @@ /obj/structure/flora/ausbushes/lavendergrass, /turf/unsimulated/floor/grass, /area/antag/actor) +"oEi" = ( +/obj/effect/floor_decal/corner/brown/full{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/machinery/power/apc/north, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/structure/machinery/light/floor{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/operations/machinist) "oEj" = ( /obj/structure/machinery/appliance/cooker/stove{ stat = 0 @@ -113080,32 +113229,6 @@ "oGC" = ( /turf/simulated/floor/wood, /area/horizon/service/bar) -"oGJ" = ( -/obj/structure/machinery/door/firedoor{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/structure/grille, -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/machinery/door/blast/shutters{ - dir = 4; - id = "xo_office_window_shutter"; - name = "Safety Shutter" - }, -/obj/structure/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor, -/area/horizon/command/heads/xo_office) "oGM" = ( /obj/structure/cable/green{ icon_state = "2-8" @@ -113407,15 +113530,6 @@ }, /turf/simulated/floor/exoplanet/barren/raskara, /area/centcom/shared_dream) -"oIQ" = ( -/obj/structure/platform, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner_wide/brown{ - dir = 8 - }, -/obj/structure/machinery/optable/robotics, -/turf/simulated/floor/tiled/white, -/area/horizon/operations/machinist/surgicalbay) "oIU" = ( /obj/structure/disposalpipe/segment, /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -113752,6 +113866,17 @@ "oKR" = ( /turf/simulated/wall/r_wall, /area/horizon/command/bridge/selfdestruct) +"oKS" = ( +/obj/structure/reagent_dispensers/acid{ + pixel_y = 32 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/machinery/r_n_d/circuit_imprinter, +/obj/effect/floor_decal/industrial/outline/research, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) "oKU" = ( /obj/structure/table/rack{ pixel_x = -3; @@ -114395,9 +114520,6 @@ /obj/item/pen, /turf/simulated/floor/carpet/rubber, /area/horizon/engineering/break_room) -"oOJ" = ( -/turf/simulated/wall/r_wall, -/area/horizon/security/checkpoint2) "oOK" = ( /obj/effect/decal/cleanable/blood/oil, /obj/effect/decal/cleanable/dirt, @@ -114579,51 +114701,6 @@ /obj/structure/machinery/light, /turf/unsimulated/floor/plating, /area/centcom/holding) -"oQc" = ( -/obj/effect/floor_decal/spline/plain/brown{ - dir = 6 - }, -/obj/structure/machinery/button/remote/airlock{ - dir = 9; - id = "workshop_door"; - name = "Machinist Workshop Door"; - pixel_y = -1; - pixel_x = -7 - }, -/obj/structure/machinery/button/remote/blast_door{ - dir = 4; - id = "shutters_deck2_workshopdesk"; - name = "Machinist Workshop Desk Shutters"; - pixel_x = 20 - }, -/obj/item/paper_bin{ - pixel_x = 7; - pixel_y = 2 - }, -/obj/item/paper/stickynotes/pad/random{ - pixel_y = 12; - pixel_x = 11 - }, -/obj/item/pen/black{ - pixel_x = 8; - pixel_y = 2 - }, -/obj/structure/table/reinforced/steel, -/obj/structure/machinery/ringer/east{ - department = "Machinist Workshop"; - id = "workshop_ringer"; - req_access = list(29); - pixel_y = 21 - }, -/obj/structure/machinery/button/remote/blast_door{ - dir = 4; - id = "mech_bay_shutter"; - name = "Machinist Bay Shutters"; - pixel_x = 27; - pixel_y = 5 - }, -/turf/simulated/floor/tiled/full, -/area/horizon/operations/machinist) "oQo" = ( /obj/structure/bed/stool/bar/padded/teal{ dir = 4 @@ -115654,14 +115731,6 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/hangar/port) -"oWS" = ( -/obj/effect/floor_decal/corner/dark_green/diagonal, -/obj/effect/floor_decal/industrial/arrow/yellow, -/obj/effect/floor_decal/industrial/outline_straight/yellow{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/primary/deck_2/starboard) "oWV" = ( /obj/effect/floor_decal/corner/red{ dir = 9 @@ -115743,16 +115812,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/shuttle/intrepid/starboard_compartment) -"oXj" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/arrow/yellow{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline_straight/yellow, -/turf/simulated/floor/tiled, -/area/horizon/hallway/primary/deck_2/starboard) "oXk" = ( /obj/structure/weightlifter, /obj/random/dirt_75, @@ -116769,6 +116828,18 @@ }, /turf/simulated/floor/tiled, /area/horizon/engineering/hallway/interior) +"pec" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/spline/plain/corner/red{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain/red{ + dir = 6 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/operations/machinist) "ped" = ( /obj/structure/table/rack, /obj/structure/machinery/light, @@ -116985,25 +117056,6 @@ /obj/structure/flora/ausbushes/lavendergrass, /turf/simulated/floor/grass/no_edge, /area/centcom/bar) -"pfj" = ( -/obj/structure/bed/stool/chair/office/bridge{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/landmark/start{ - name = "Bridge Crew" - }, -/obj/structure/machinery/camera/network/command{ - c_tag = "Bridge - Conference room"; - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/command/bridge/meeting_room) "pfk" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 @@ -117120,19 +117172,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/hallway/primary/deck_3/central) -"pfM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/lattice/catwalk/indoor/grate/light, -/obj/structure/machinery/power/apc/north, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/structure/railing/mapped, -/turf/simulated/floor/plating, -/area/horizon/operations/machinist/surgicalbay) "pfN" = ( /obj/structure/machinery/door/window/northright{ name = "display case"; @@ -117416,18 +117455,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/service/custodial) -"phB" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/horizon/command/bridge/controlroom) "phH" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ @@ -117471,13 +117498,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/shuttle/intrepid/starboard_compartment) -"phM" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/decal/cleanable/cobweb2{ - icon_state = "cobweb1" - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/maintenance/deck_2/wing/starboard) "phQ" = ( /obj/structure/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 @@ -118036,21 +118056,6 @@ /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor/wood, /area/antag/burglar) -"pmo" = ( -/obj/structure/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/brown{ - dir = 1 - }, -/obj/effect/floor_decal/corner_wide/brown{ - dir = 6 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/operations/machinist/surgicalbay) "pmp" = ( /obj/effect/floor_decal/corner/brown{ dir = 6 @@ -118073,6 +118078,13 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/horizon/hallway/primary/deck_2/fore) +"pmx" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/maintenance/deck_2/wing/starboard/far) "pmB" = ( /obj/structure/table/rack, /obj/item/stack/liquidbags/half_full{ @@ -118220,18 +118232,14 @@ /obj/item/radio/intercom/south, /turf/simulated/floor/lino, /area/horizon/service/chapel/main) -"pnt" = ( -/obj/structure/table/reinforced/wood, -/obj/item/toy/desk/newtoncradle{ - pixel_x = -4; - pixel_y = 7 +"pnu" = ( +/obj/structure/machinery/light/spot{ + dir = 1 }, -/obj/item/flashlight/lamp/green{ - pixel_x = 7; - pixel_y = 3 - }, -/turf/simulated/floor/carpet, -/area/horizon/command/heads/xo_office) +/obj/effect/floor_decal/industrial/outline/firefighting_closet, +/obj/structure/extinguisher_cabinet/east, +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/auxiliary) "pnv" = ( /obj/item/gun/energy/rifle/laser, /obj/item/gun/energy/rifle/laser, @@ -118433,14 +118441,6 @@ /obj/item/lightreplacer, /turf/simulated/floor/tiled, /area/horizon/command/bridge/supply) -"poR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_3/security/starboard) "poS" = ( /obj/structure/shuttle_part/scc_space_ship{ icon_state = "d3-4" @@ -118795,6 +118795,19 @@ /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor/plating, /area/centcom/legion/hangar5) +"psh" = ( +/obj/structure/bed/stool/chair/office/bridge{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/heads/xo_desk) "psm" = ( /obj/structure/cable{ icon_state = "1-2" @@ -118810,6 +118823,53 @@ }, /turf/simulated/floor/tiled, /area/horizon/hallway/primary/deck_3/central) +"psn" = ( +/obj/effect/decal/fake_object{ + dir = 4; + icon = 'icons/effects/props/holodeck/konyang/32x32.dmi'; + icon_state = "plank"; + name = "floor planks" + }, +/obj/effect/decal/fake_object{ + desc = "A rudimentary, poorly utilized railing mechanism. Stepping over it is easy."; + dir = 4; + icon = 'icons/effects/props/holodeck/konyang/32x32.dmi'; + icon_state = "rope-railing"; + name = "short rope" + }, +/obj/effect/decal/fake_object{ + desc = "A rudimentary, poorly utilized railing mechanism. Stepping over it is easy."; + dir = 4; + icon = 'icons/effects/props/holodeck/konyang/32x32.dmi'; + icon_state = "post"; + name = "post"; + pixel_y = -4 + }, +/obj/effect/decal/fake_object{ + desc = "A lovely umbrella for those rainy Konyanger days."; + dir = 4; + icon = 'icons/effects/props/holodeck/konyang/64x64.dmi'; + icon_state = "umbrella"; + name = "traditional Konyanger umbrella"; + pixel_x = -1; + pixel_y = 4 + }, +/obj/effect/decal/fake_object{ + dir = 4; + icon = 'icons/effects/props/holodeck/konyang/32x32.dmi'; + icon_state = "plank_shadow"; + name = "floor planks" + }, +/obj/structure/machinery/door/window/holowindoor{ + dir = 1 + }, +/turf/simulated/floor/holofloor/wood{ + dir = 6; + icon = 'icons/turf/flooring/exoplanet/konyang.dmi'; + icon_state = "water"; + name = "shallow water" + }, +/area/horizon/holodeck/source_konyang) "pst" = ( /obj/effect/map_effect/window_spawner/full/borosilicate/reinforced, /obj/structure/machinery/door/blast/regular/open{ @@ -119070,20 +119130,6 @@ icon_state = "dark_preview" }, /area/centcom/control) -"pum" = ( -/obj/structure/railing/mapped, -/obj/structure/machinery/camera{ - c_tag = "Operations - Machinist Workshop 1"; - network = list("Operations"); - dir = 4 - }, -/obj/structure/machinery/conveyor{ - dir = 6; - id = "Robocompo"; - reversed = 1 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/machinist) "pun" = ( /obj/structure/bed/handrail{ dir = 1 @@ -119388,19 +119434,6 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/hallway/primary/deck_3/starboard/docks) -"pwq" = ( -/obj/structure/lattice/catwalk/indoor/grate/light, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/machinery/camera{ - c_tag = "Operations - Machinist Surgical Theatre"; - network = list("Operations"); - dir = 4 - }, -/obj/structure/machinery/alarm/north, -/turf/simulated/floor/plating, -/area/horizon/operations/machinist/surgicalbay) "pws" = ( /obj/structure/lattice/catwalk/indoor/grate/dark, /obj/structure/machinery/light/small{ @@ -119751,6 +119784,12 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/carpet/rubber, /area/horizon/rnd/xenobiology/xenoflora) +"pyv" = ( +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/custodial/disposals/deck_1) "pyx" = ( /obj/structure/machinery/atmospherics/unary/vent_scrubber/on, /obj/effect/floor_decal/corner/brown/full{ @@ -120352,12 +120391,6 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/rnd/telesci) -"pBY" = ( -/obj/structure/bed/stool/chair/office/bridge{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/horizon/command/heads/xo_office) "pBZ" = ( /obj/structure/grille, /obj/structure/window/shuttle/scc_space_ship, @@ -121241,6 +121274,13 @@ /obj/effect/floor_decal/corner/dark_blue/full, /turf/simulated/floor/tiled/dark, /area/horizon/security/evidence_storage) +"pIn" = ( +/obj/structure/bed/stool/chair/office/dark, +/obj/effect/landmark/start{ + name = "Machinist" + }, +/turf/simulated/floor/tiled/full, +/area/horizon/operations/machinist) "pIp" = ( /obj/effect/floor_decal/spline/plain{ dir = 9 @@ -121826,32 +121866,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/hallway) -"pMO" = ( -/obj/structure/machinery/door/firedoor{ - req_one_access = list(24,11,67,73); - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch_door/yellow, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/machinery/door/airlock/command{ - dir = 4; - name = "Executive Officer's Desk"; - req_access = list(57) - }, -/obj/structure/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/command/heads/xo_desk) "pMQ" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -122837,6 +122851,15 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/reactor/supermatter/monitoring) +"pSz" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/starboard) "pSL" = ( /obj/structure/table/wood, /turf/simulated/floor/carpet, @@ -122997,6 +123020,15 @@ }, /turf/simulated/floor/plating, /area/horizon/engineering/atmos) +"pUm" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/operations/machinist) "pUn" = ( /obj/structure/window/shuttle/unique/scc/scout{ icon_state = "3,5" @@ -123006,6 +123038,27 @@ }, /turf/simulated/floor/plating, /area/horizon/shuttle/canary) +"pUp" = ( +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/outline_straight/service{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/bar) "pUq" = ( /obj/structure/closet/secure_closet/custodial, /turf/unsimulated/floor{ @@ -123369,12 +123422,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/service/hydroponics) -"pWR" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/service/custodial/disposals/deck_1) "pWU" = ( /obj/structure/platform/ledge, /obj/structure/platform/ledge{ @@ -123749,6 +123796,17 @@ "pZu" = ( /turf/simulated/floor/tiled/dark/full, /area/horizon/maintenance/deck_2/wing/starboard/near) +"pZx" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/structure/extinguisher_cabinet/south, +/turf/simulated/floor/tiled, +/area/horizon/security/hallway) "pZC" = ( /obj/effect/floor_decal/corner/dark_blue/full{ dir = 8 @@ -124127,11 +124185,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/atmos/turbine) -"qcz" = ( -/obj/structure/machinery/hologram/holopad, -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/dark, -/area/horizon/command/heads/xo_desk) "qcI" = ( /obj/structure/flora/rock, /obj/effect/floor_decal/spline/plain{ @@ -124536,6 +124589,30 @@ }, /turf/simulated/floor/reinforced/airless, /area/horizon/engineering/reactor/indra/mainchamber) +"qeZ" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/light/floor{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/meeting_room) "qfa" = ( /obj/structure/cable, /obj/structure/machinery/power/apc/low/south, @@ -124639,25 +124716,6 @@ }, /turf/simulated/floor/wood, /area/horizon/command/heads/om) -"qfL" = ( -/obj/structure/table/reinforced/wood, -/obj/structure/machinery/controlhub/xo_office/private{ - pixel_x = -8; - pixel_y = -3 - }, -/obj/structure/machinery/requests_console/north{ - announcementConsole = 1; - department = "Executive Officer's Office"; - departmentType = 5; - name = "XO's Office Requests Console"; - pixel_y = 32 - }, -/obj/structure/machinery/power/outlet{ - pixel_y = 4; - pixel_x = 6 - }, -/turf/simulated/floor/carpet, -/area/horizon/command/heads/xo_office) "qfM" = ( /obj/structure/girder, /turf/simulated/floor/plating, @@ -124901,24 +124959,6 @@ /obj/effect/floor_decal/industrial/outline, /turf/simulated/floor/reinforced, /area/horizon/shuttle/canary) -"qho" = ( -/obj/structure/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch_door/yellow{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/table/reinforced/steel, -/obj/structure/machinery/door/window/desk/northleft{ - req_access = list(57) - }, -/obj/structure/machinery/door/blast/shutters{ - dir = 2; - id = "xo_office_privacy_shutter" - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/command/heads/xo_desk) "qhp" = ( /obj/structure/machinery/atmospherics/pipe/simple/visible/green{ dir = 9 @@ -124949,6 +124989,13 @@ /obj/structure/sign/securearea, /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/horizon/exterior) +"qhE" = ( +/obj/structure/machinery/optable, +/obj/effect/floor_decal/spline/plain/red{ + dir = 1 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/operations/machinist/surgicalbay) "qhR" = ( /turf/unsimulated/floor/freezer, /area/centcom/distress_prep) @@ -125327,17 +125374,6 @@ icon_state = "dark_preview" }, /area/centcom/control) -"qla" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/decal/cleanable/cobweb2, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/maintenance/deck_2/wing/starboard) "qle" = ( /obj/structure/cable/green{ icon_state = "2-8" @@ -125370,6 +125406,10 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/hangar/starboard) +"qlp" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) "qlq" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -126146,20 +126186,6 @@ }, /turf/simulated/floor/plating, /area/shuttle/skipjack) -"qpW" = ( -/obj/structure/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/machinery/light_switch/north{ - pixel_x = -4 - }, -/obj/structure/lattice/catwalk/indoor/grate/light, -/obj/structure/railing/mapped, -/turf/simulated/floor/plating, -/area/horizon/operations/machinist/surgicalbay) "qpY" = ( /obj/effect/decal/fake_object{ icon = 'icons/obj/doors/rapid_pdoor.dmi'; @@ -126538,11 +126564,6 @@ }, /turf/unsimulated/floor/monotile, /area/antag/raider) -"qsB" = ( -/obj/effect/floor_decal/corner/brown/full, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/horizon/hallway/primary/deck_2/starboard) "qsG" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 5 @@ -127091,6 +127112,32 @@ /obj/structure/machinery/meter, /turf/simulated/floor/tiled/dark, /area/horizon/engineering/atmos) +"qwG" = ( +/obj/structure/machinery/door/firedoor{ + req_one_access = list(24,11,67,73); + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch_door/yellow, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/machinery/door/airlock/command{ + dir = 4; + name = "Executive Officer's Desk"; + req_access = list(57) + }, +/obj/structure/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/command/heads/xo_desk) "qwI" = ( /obj/effect/floor_decal/spline/fancy/wood/cee{ dir = 8 @@ -127134,12 +127181,6 @@ }, /turf/simulated/floor/wood/maple, /area/horizon/holodeck/source_cafe) -"qwV" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_1/hangar/port) "qwX" = ( /obj/structure/machinery/door/airlock/centcom{ locked = 1; @@ -128058,15 +128099,6 @@ }, /turf/unsimulated/floor, /area/centcom/control) -"qDL" = ( -/obj/structure/machinery/mecha_part_fabricator{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/carpet/rubber, -/area/horizon/operations/machinist) "qDM" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -128218,15 +128250,28 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/operations/commissary) -"qEB" = ( -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/horizon/command/heads/xo_office) "qEE" = ( /obj/structure/cable/orange{ icon_state = "4-8" }, /turf/simulated/floor/tiled, /area/horizon/engineering/reactor/indra/mainchamber) +"qEH" = ( +/obj/structure/table/reinforced/wood, +/obj/item/modular_computer/laptop/preset/command/xo{ + pixel_y = 10 + }, +/turf/simulated/floor/carpet, +/area/horizon/command/heads/xo_office) +"qEI" = ( +/obj/structure/machinery/light, +/obj/item/radio/intercom/west, +/obj/structure/closet/secure_closet/machinist, +/obj/effect/floor_decal/spline/plain/red{ + dir = 1 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/operations/machinist/surgicalbay) "qEQ" = ( /obj/structure/cable{ icon_state = "4-8" @@ -128294,12 +128339,6 @@ }, /turf/simulated/floor/wood, /area/horizon/service/mess_hall) -"qFo" = ( -/obj/structure/bed/stool/chair/padded/black{ - dir = 8 - }, -/turf/simulated/floor/carpet, -/area/horizon/command/heads/xo_office) "qFq" = ( /obj/effect/floor_decal/industrial/outline/custodial, /obj/structure/mopbucket, @@ -128408,6 +128447,11 @@ }, /turf/unsimulated/floor/monotile, /area/antag/loner) +"qFW" = ( +/obj/item/reagent_containers/glass/bucket, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled, +/area/horizon/security/brig) "qFX" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -128495,6 +128539,16 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, /area/horizon/engineering/storage/lower) +"qGs" = ( +/obj/structure/machinery/door/blast/shutters/open{ + id = "mech_bay_shutter"; + name = "Mech Bay Shutters" + }, +/obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ + id = "workshopfabrication" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) "qGt" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -128624,9 +128678,6 @@ }, /turf/simulated/floor/wood, /area/horizon/crew/journalistoffice) -"qHd" = ( -/turf/simulated/wall/r_wall, -/area/horizon/command/heads/xo_desk) "qHe" = ( /obj/random/maintenance_junk_or_loot, /turf/simulated/floor/tiled/dark, @@ -129186,24 +129237,6 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/elevator) -"qKE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/full{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/horizon/operations/machinist) "qKF" = ( /obj/structure/machinery/light/small{ dir = 4 @@ -129212,19 +129245,6 @@ /obj/random/loot, /turf/simulated/floor/tiled/dark/full, /area/horizon/maintenance/deck_2/wing/port/far) -"qKJ" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_2/service/starboard) "qKM" = ( /obj/effect/floor_decal/industrial/outline/grey, /obj/structure/closet/crate/plastic{ @@ -129755,12 +129775,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/service/chapel/main) -"qNi" = ( -/obj/effect/floor_decal/corner_wide/black{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/operations/machinist) "qNk" = ( /obj/structure/grille, /obj/structure/machinery/door/blast/regular{ @@ -129788,6 +129802,24 @@ }, /turf/simulated/floor/tiled, /area/horizon/crew/fitness/changing) +"qNm" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain/corner/brown{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/operations/machinist) "qNo" = ( /obj/structure/lattice, /obj/structure/railing/mapped{ @@ -129971,15 +130003,6 @@ }, /turf/simulated/floor/wood, /area/horizon/service/bar) -"qOR" = ( -/obj/structure/machinery/vending/robotics, -/obj/effect/floor_decal/spline/plain/brown{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/machinery/light, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/machinist) "qOS" = ( /obj/effect/floor_decal/corner/red{ dir = 9 @@ -130020,16 +130043,6 @@ /obj/item/radio/intercom/south, /turf/simulated/floor/tiled/white, /area/horizon/medical/ward/isolation) -"qPl" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/platform, -/obj/structure/machinery/optable, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/operations/machinist/surgicalbay) "qPn" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 5 @@ -130411,22 +130424,6 @@ icon_state = "dark_preview" }, /area/antag/mercenary) -"qRU" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/horizon/hallway/primary/deck_2/starboard) "qRZ" = ( /obj/structure/flora/ausbushes/ppflowers, /turf/simulated/floor/holofloor/beach/sand{ @@ -130677,19 +130674,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/operations/break_room) -"qTN" = ( -/obj/item/modular_computer/console/preset/command/account{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline_corner/security, -/obj/effect/floor_decal/industrial/outline_segment/security{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline_segment/security{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/command/heads/xo_office) "qTP" = ( /turf/simulated/wall/shuttle/unique/ert{ icon_state = "6,0" @@ -131703,6 +131687,14 @@ icon_state = "8,0" }, /area/shuttle/legion) +"ras" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/maintenance/deck_2/operations) "rax" = ( /obj/effect/floor_decal/spline/plain/cee, /obj/effect/decal/fake_object/light_source/invisible{ @@ -131841,6 +131833,11 @@ }, /turf/simulated/floor/plating, /area/horizon/service/hydroponics/hazard) +"rbE" = ( +/obj/structure/table/rack, +/obj/random/loot, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/medical/cryo) "rbK" = ( /obj/structure/machinery/atmospherics/pipe/simple/visible/universal{ dir = 4 @@ -131901,11 +131898,6 @@ }, /turf/unsimulated/floor/dark_monotile, /area/antag/actor) -"rce" = ( -/obj/effect/decal/cleanable/dirt, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_1/medical/cryo) "rch" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -132049,6 +132041,13 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/engineering/atmos/air) +"rcS" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) "rcZ" = ( /obj/structure/machinery/keycard_auth{ pixel_x = 31; @@ -132216,6 +132215,23 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/operations/starboard/far) +"rel" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/service/starboard) "rem" = ( /obj/structure/closet/crate, /obj/effect/floor_decal/corner/brown{ @@ -132317,6 +132333,14 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/reactor/indra/mainchamber) +"reE" = ( +/obj/structure/machinery/lapvend, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 7 + }, +/obj/structure/machinery/alarm/south, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/meeting_room) "reJ" = ( /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, @@ -132462,6 +132486,16 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor, /area/horizon/maintenance/deck_3/cafe) +"rfK" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/structure/machinery/firealarm/south, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/starboard) "rfX" = ( /obj/structure/machinery/door/airlock/security{ dir = 1; @@ -132579,24 +132613,6 @@ }, /turf/simulated/floor/plating, /area/horizon/engineering/atmos/air) -"rhb" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/lattice/catwalk/indoor/grate/light, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/railing/mapped, -/turf/simulated/floor/plating, -/area/horizon/operations/machinist/surgicalbay) "rhn" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -132817,6 +132833,19 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/research) +"rio" = ( +/obj/structure/grille, +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/machinery/door/firedoor, +/obj/structure/machinery/door/blast/shutters{ + id = "machinist_surgery_shutters"; + name = "Machinist Workshop Garage Shutter" + }, +/obj/effect/landmark/entry_point/fore{ + name = "fore, machinist workshop" + }, +/turf/simulated/floor/plating, +/area/horizon/operations/machinist/surgicalbay) "riy" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -132933,13 +132962,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/maintenance/deck_1/wing/starboard/far) -"rjk" = ( -/obj/structure/machinery/light/small, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_2/service/port) "rjm" = ( /obj/structure/machinery/seed_extractor, /obj/structure/machinery/alarm/north{ @@ -133451,13 +133473,6 @@ "rmb" = ( /turf/simulated/mineral/planet, /area/centcom/shared_dream) -"rmc" = ( -/obj/structure/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/horizon/operations/machinist) "rmd" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -134355,6 +134370,11 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/command/bridge/controlroom) +"rsi" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/machinery/alarm/north, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/starboard) "rsn" = ( /obj/effect/floor_decal/industrial/hatch_door/yellow, /obj/structure/disposalpipe/segment{ @@ -134923,6 +134943,16 @@ /obj/effect/floor_decal/industrial/hatch/operations, /turf/simulated/floor/tiled/dark/full, /area/horizon/operations/loading) +"rwb" = ( +/obj/structure/machinery/mecha_part_fabricator{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/red, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) "rwi" = ( /obj/structure/cable{ icon_state = "1-2" @@ -135687,19 +135717,6 @@ /obj/effect/floor_decal/industrial/hatch/service, /turf/simulated/floor/tiled/dark/full, /area/horizon/service/hydroponics/garden) -"rBj" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/arrow/yellow, -/obj/effect/floor_decal/industrial/outline_straight/yellow{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/primary/deck_2/starboard) "rBm" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 10 @@ -135759,28 +135776,6 @@ "rBJ" = ( /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/reactor/indra/smes) -"rBN" = ( -/obj/item/reagent_containers/glass/bucket{ - pixel_x = 9; - pixel_y = 8 - }, -/obj/structure/table/steel, -/obj/effect/floor_decal/spline/plain/corner/brown{ - dir = 1 - }, -/obj/item/storage/firstaid/empty{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/storage/firstaid/empty{ - pixel_x = -6 - }, -/obj/item/reagent_containers/glass/bucket{ - pixel_x = 9; - pixel_y = 1 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/machinist) "rBO" = ( /obj/effect/floor_decal/industrial/warning, /obj/random/maintenance_junk_or_loot, @@ -135844,20 +135839,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/hallway/primary/deck_2/central) -"rCh" = ( -/obj/effect/floor_decal/corner_wide/brown{ - dir = 5 - }, -/obj/structure/machinery/light/small/floor{ - pixel_y = -16 - }, -/obj/structure/sink/kitchen{ - dir = 4; - name = "sink"; - pixel_x = -19 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/operations/machinist/surgicalbay) "rCk" = ( /obj/structure/bed/stool/chair/office/light{ dir = 8 @@ -135887,15 +135868,13 @@ /obj/structure/machinery/atmospherics/pipe/simple/visible/black, /turf/simulated/floor/plating, /area/horizon/engineering/atmos/air) -"rCD" = ( -/obj/structure/cable/green{ - icon_state = "0-4" +"rCE" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/decal/cleanable/cobweb2{ + icon_state = "cobweb1" }, -/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ - id = "xo_conference_tint" - }, -/turf/simulated/floor, -/area/horizon/command/heads/xo_office) +/turf/simulated/floor/tiled/dark/full, +/area/horizon/maintenance/deck_2/wing/starboard) "rCL" = ( /obj/structure/cable/orange{ icon_state = "1-4" @@ -136425,13 +136404,6 @@ }, /turf/simulated/floor/plating, /area/horizon/engineering/atmos/air) -"rGE" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_1/auxatmos) "rGF" = ( /obj/structure/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -136689,13 +136661,6 @@ }, /turf/simulated/floor/plating, /area/horizon/engineering/atmos/air) -"rHW" = ( -/obj/structure/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/primary/deck_2/starboard) "rHY" = ( /turf/simulated/wall/shuttle/unique/ert{ icon_state = "7,0" @@ -136855,27 +136820,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/rnd/xenoarch/storage) -"rJH" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, -/obj/item/mmi{ - pixel_y = 4 - }, -/obj/item/mmi{ - pixel_y = -1; - pixel_x = -5 - }, -/obj/structure/table/steel, -/obj/effect/floor_decal/spline/plain/brown{ - dir = 8 - }, -/obj/structure/platform_deco{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/machinist) "rJL" = ( /obj/effect/decal/fake_object{ color = "#545c68"; @@ -137111,22 +137055,6 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/shuttle/intrepid/medical) -"rLa" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/horizon/hallway/primary/deck_2/starboard) "rLi" = ( /obj/effect/floor_decal/spline/fancy, /obj/structure/railing/mapped, @@ -137140,15 +137068,6 @@ dir = 1 }, /area/centcom/legion) -"rLs" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 8 - }, -/obj/structure/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/operations/machinist) "rLx" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -137525,24 +137444,38 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/medical/surgery) -"rNw" = ( -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/machinery/light/floor, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/horizon/operations/machinist) "rNx" = ( /obj/effect/floor_decal/spline/plain/blue{ dir = 9 }, /turf/simulated/floor/tiled/dark, /area/horizon/engineering/atmos/storage) +"rNC" = ( +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/door/firedoor{ + req_one_access = list(24,11,67,73); + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch_door/yellow, +/obj/structure/machinery/door/airlock/command{ + dir = 4; + id_tag = "conference_room"; + name = "Conference Room"; + req_one_access = list(19,38,72) + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/full, +/area/horizon/command/bridge/meeting_room) "rNE" = ( /obj/structure/cable{ icon_state = "4-8" @@ -137606,13 +137539,6 @@ /obj/structure/machinery/alarm/west, /turf/simulated/floor/tiled, /area/horizon/hangar/intrepid) -"rOb" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/horizon/storage/eva) "rOd" = ( /obj/structure/machinery/atmospherics/unary/heater{ dir = 8 @@ -137657,14 +137583,6 @@ }, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_lasertag) -"rOm" = ( -/obj/structure/bed/stool/chair{ - dir = 1 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/machinery/alarm/south, -/turf/simulated/floor/plating, -/area/horizon/operations/machinist) "rOo" = ( /obj/structure/table/rack, /obj/item/clothing/under/color/green, @@ -137856,16 +137774,6 @@ }, /turf/simulated/wall, /area/horizon/maintenance/deck_2/wing/starboard/far) -"rPk" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/primary/deck_2/starboard) "rPm" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/machinery/shieldgen, @@ -138237,6 +138145,16 @@ /obj/structure/lattice/catwalk/indoor, /turf/simulated/floor/plating, /area/horizon/maintenance/substation/wing_port) +"rRG" = ( +/obj/effect/floor_decal/corner_wide/brown/diagonal, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/machinery/disposal/small/east, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/machinery/alarm/west, +/turf/simulated/floor/tiled/white, +/area/horizon/operations/machinist/surgicalbay) "rRK" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 4 @@ -138335,6 +138253,22 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/hallway/primary/deck_2/central) +"rSe" = ( +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_2/starboard) "rSg" = ( /obj/structure/machinery/papershredder{ pixel_x = -6 @@ -139232,6 +139166,11 @@ /obj/structure/machinery/photocopier, /turf/simulated/floor/carpet, /area/horizon/repoffice/representative_two) +"rWV" = ( +/obj/structure/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) "rXm" = ( /obj/structure/lattice/catwalk/indoor/grate/dark, /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -139593,16 +139532,6 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, /area/horizon/engineering/storage_hard/aft) -"rZy" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/machinery/light/small, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor, -/area/horizon/maintenance/deck_3/aft/starboard) "rZz" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -139826,12 +139755,6 @@ /obj/structure/table/rack, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/wing/starboard/auxatmos) -"sby" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/maintenance/deck_1/teleporter) "sbD" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/machinery/light/small{ @@ -139917,10 +139840,6 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_3/security/starboard) -"sbW" = ( -/obj/effect/floor_decal/industrial/hatch/service, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/service/hydroponics) "scr" = ( /obj/structure/cable{ icon_state = "4-8" @@ -140600,6 +140519,12 @@ }, /turf/simulated/floor/carpet/rubber, /area/horizon/tcommsat/chamber) +"sgz" = ( +/obj/structure/noticeboard{ + pixel_y = 30 + }, +/turf/simulated/floor/carpet, +/area/horizon/command/heads/xo_office) "sgA" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -140962,6 +140887,19 @@ }, /turf/simulated/floor, /area/tdome/tdome1) +"sik" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 1 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/horizon/operations/lobby) "sil" = ( /obj/structure/machinery/atmospherics/portables_connector{ dir = 4 @@ -141032,6 +140970,16 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/merchant) +"siu" = ( +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/operations/machinist) "siv" = ( /obj/structure/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 4 @@ -141243,13 +141191,6 @@ }, /turf/simulated/floor/tiled/gunmetal, /area/horizon/operations/warehouse) -"sjN" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/maintenance/deck_2/wing/starboard/far) "sjO" = ( /obj/effect/floor_decal/industrial/outline/grey, /obj/random/dirt_75, @@ -141409,6 +141350,11 @@ /obj/effect/floor_decal/spline/fancy/wood/corner, /turf/unsimulated/floor, /area/centcom/evac) +"skJ" = ( +/obj/structure/machinery/recharge_station, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/hallway/primary/deck_2/starboard) "skM" = ( /obj/structure/machinery/hologram/holopad/long_range, /obj/effect/overmap/visitable/ship/landable/mining_shuttle, @@ -142095,19 +142041,6 @@ icon_state = "dark_preview" }, /area/centcom/specops) -"spu" = ( -/obj/structure/bed/stool/chair/office/bridge{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/dark, -/area/horizon/command/heads/xo_desk) "spx" = ( /obj/structure/disposalpipe/segment, /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, @@ -142207,16 +142140,6 @@ }, /turf/simulated/floor/wood, /area/horizon/command/bridge/minibar) -"sqw" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/spline/fancy/wood/cee{ - dir = 8 - }, -/obj/structure/machinery/light/small/floor, -/turf/simulated/floor/wood, -/area/horizon/command/heads/xo_office) "sqB" = ( /obj/structure/machinery/door/blast/shutters{ density = 0; @@ -142469,6 +142392,18 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/wing/starboard/far) +"srM" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 8 + }, +/obj/structure/machinery/light/floor{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/meeting_room) "ssa" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -142499,6 +142434,12 @@ }, /turf/simulated/floor/wood, /area/horizon/command/bridge/minibar) +"ssk" = ( +/obj/structure/bed/stool/chair{ + dir = 4 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/operations/machinist/surgicalbay) "ssl" = ( /obj/effect/floor_decal/corner/black{ dir = 9 @@ -142594,6 +142535,11 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/hallway) +"ssx" = ( +/obj/structure/machinery/vending/robotics, +/obj/item/radio/intercom/east, +/turf/simulated/floor/tiled/full, +/area/horizon/operations/machinist) "ssy" = ( /obj/effect/map_effect/window_spawner/full/reinforced/firedoor, /turf/simulated/floor/tiled/dark/full, @@ -143180,6 +143126,12 @@ icon_state = "7,3" }, /area/shuttle/syndicate_elite) +"swV" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/heads/xo_desk) "swW" = ( /obj/random/maintenance_junk_or_loot, /obj/random/dirt_75, @@ -143678,6 +143630,28 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/maintenance/deck_3/aft/starboard/far) +"szR" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 1 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood, +/area/horizon/command/heads/xo_office) "szT" = ( /obj/structure/machinery/button/remote/blast_door{ dir = 4; @@ -143902,17 +143876,6 @@ /obj/structure/sign/staff_only, /turf/unsimulated/wall/darkshuttlewall, /area/centcom/bar) -"sBt" = ( -/obj/structure/machinery/vending/wardrobe/robo_wardrobe, -/obj/effect/floor_decal/corner_wide/black/full{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/operations/machinist) "sBx" = ( /obj/structure/machinery/door/airlock/command{ id_tag = "rep_office_b"; @@ -144129,13 +144092,6 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/carpet/rubber, /area/horizon/engineering/storage_hard/lower) -"sCF" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/horizon/operations/machinist) "sCH" = ( /obj/effect/floor_decal/corner/grey/diagonal{ dir = 4 @@ -144395,32 +144351,6 @@ /obj/effect/shuttle_landmark/escape_pod/transit/pod3, /turf/space/transit/east, /area/template_noop) -"sDV" = ( -/obj/structure/machinery/door/firedoor{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/structure/grille, -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/machinery/door/blast/shutters{ - dir = 4; - id = "xo_office_window_shutter"; - name = "Safety Shutter" - }, -/obj/structure/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor, -/area/horizon/command/heads/xo_office) "sDY" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 5 @@ -144499,11 +144429,6 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/rnd/xenobiology) -"sEk" = ( -/obj/item/reagent_containers/glass/bucket, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled, -/area/horizon/security/brig) "sEl" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -144817,25 +144742,6 @@ }, /turf/unsimulated/floor/plating, /area/centcom/ferry) -"sGP" = ( -/obj/structure/machinery/conveyor_switch/oneway{ - desc = "A conveyor control switch. It appears to only go in one direction. Controls the components conveyor belt."; - id = "Robocompo"; - pixel_y = 20; - pixel_x = -10 - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/structure/machinery/power/apc/north, -/obj/effect/landmark/start{ - name = "Machinist" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/simulated/floor/carpet/rubber, -/area/horizon/operations/machinist) "sGT" = ( /obj/effect/floor_decal/corner_wide/yellow{ dir = 4 @@ -145262,6 +145168,10 @@ icon_state = "wood" }, /area/centcom/control) +"sKw" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/maintenance/deck_2/aft) "sKx" = ( /obj/effect/floor_decal/corner/lime/diagonal, /turf/unsimulated/floor, @@ -145850,6 +145760,14 @@ /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/horizon/hallway/primary/deck_1/central) +"sOc" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/random/dirt_75, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor, +/area/horizon/maintenance/deck_2/wing/port/far) "sOe" = ( /obj/effect/floor_decal/industrial/warning/corner, /obj/effect/decal/cleanable/dirt, @@ -146132,6 +146050,15 @@ }, /turf/simulated/floor/carpet/rubber, /area/horizon/engineering/reactor/indra/monitoring) +"sPY" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/machinery/door/blast/shutters{ + id = "workshop_garage"; + name = "Machinist Workshop Garage Shutter" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) "sQe" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood, @@ -146189,6 +146116,11 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/main/port) +"sQz" = ( +/obj/effect/floor_decal/industrial/outline/red, +/obj/structure/machinery/mech_recharger, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) "sQC" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 7 @@ -146613,6 +146545,18 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark/full, /area/horizon/rnd/xenobiology/foyer) +"sTk" = ( +/obj/structure/table/reinforced/wood, +/obj/structure/machinery/photocopier/faxmachine{ + department = "Executive Officer's Office"; + pixel_y = 5 + }, +/obj/item/storage/secure/safe/id_lock{ + req_access = list(57); + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/command/heads/xo_office) "sTm" = ( /obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, /obj/structure/machinery/door/blast/regular/open{ @@ -146709,6 +146653,12 @@ }, /turf/unsimulated/floor, /area/antag/loner) +"sUz" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port) "sUC" = ( /obj/structure/bed/stool/chair/sofa/left/black{ desc = "A pew, how holy!"; @@ -146934,6 +146884,10 @@ /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor, /area/horizon/maintenance/deck_3/auxatmos) +"sWu" = ( +/obj/structure/machinery/fabricator/autolathe, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) "sWx" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -147003,6 +146957,25 @@ }, /turf/simulated/floor/carpet, /area/horizon/security/investigators_office) +"sWM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/bed/stool/chair{ + dir = 1 + }, +/obj/structure/machinery/firealarm/south, +/turf/simulated/floor/tiled/dark, +/area/horizon/operations/machinist) "sWR" = ( /turf/simulated/wall, /area/horizon/hangar/operations) @@ -147498,30 +147471,6 @@ }, /turf/simulated/floor/holofloor/lino, /area/horizon/holodeck/source_courtroom) -"sZN" = ( -/obj/structure/table/rack, -/obj/item/stack/material/steel/full, -/obj/item/stack/material/steel/full, -/obj/item/stack/material/steel/full, -/obj/item/stack/material/steel/full, -/obj/item/stack/material/glass/full, -/obj/item/stack/material/glass/full, -/obj/item/stack/material/aluminium/full, -/obj/item/stack/material/aluminium/full, -/obj/item/paint_sprayer, -/obj/item/reagent_containers/weldpack, -/obj/item/stack/material/plasteel{ - amount = 20; - pixel_y = 4; - randpixel = 0 - }, -/obj/item/storage/toolbox/mechanical, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/railing/mapped/no_density/low{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/machinist) "sZS" = ( /obj/structure/coatrack{ pixel_x = -9; @@ -147533,25 +147482,6 @@ /obj/effect/floor_decal/corner/beige/diagonal, /turf/simulated/floor/tiled/white, /area/horizon/security/forensic_laboratory) -"tad" = ( -/obj/structure/machinery/access_button{ - command = "cycle_interior"; - frequency = 1380; - master_tag = "centcom_shuttle_dock_airlock"; - name = "interior access button"; - pixel_x = -25; - pixel_y = -25; - req_access = list(13) - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 - }, -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 4 - }, -/obj/structure/machinery/alarm/east, -/turf/simulated/floor/tiled, -/area/horizon/security/checkpoint2) "tag" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -147799,6 +147729,18 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/maintenance/deck_3/aft/holodeck) +"tco" = ( +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ + id = "xo_conference_tint" + }, +/turf/simulated/floor, +/area/horizon/command/heads/xo_office) "tcr" = ( /obj/structure/tank_wall/oxygen{ density = 0; @@ -147862,19 +147804,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/operations/lobby) -"tcN" = ( -/obj/structure/bed/stool/chair/office/bridge, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/effect/landmark/start{ - name = "Executive Officer" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/command/bridge/meeting_room) "tcO" = ( /obj/structure/lattice/catwalk/indoor, /turf/unsimulated/floor/plating, @@ -147959,14 +147888,6 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/main/starboard) -"tdl" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/machinery/alarm/north, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/maintenance/deck_2/cargo_compartment) "tdm" = ( /obj/effect/floor_decal/corner/yellow/full{ dir = 8 @@ -148590,18 +148511,6 @@ /obj/structure/table/wood, /turf/unsimulated/floor/wood, /area/centcom/specops) -"tgV" = ( -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ - id = "xo_conference_tint" - }, -/turf/simulated/floor, -/area/horizon/command/heads/xo_office) "tgX" = ( /obj/structure/cable{ icon_state = "4-8" @@ -148697,6 +148606,15 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/rnd/xenobiology) +"thx" = ( +/obj/item/modular_computer/console/preset/supply/machinist, +/obj/structure/machinery/camera{ + c_tag = "Operations - Machinist Surgical Theatre"; + network = list("Operations") + }, +/obj/effect/floor_decal/spline/plain/red, +/turf/simulated/floor/carpet/rubber, +/area/horizon/operations/machinist/surgicalbay) "thA" = ( /obj/effect/floor_decal/industrial/outline/red, /obj/structure/table/rack, @@ -148744,6 +148662,12 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/reactor/supermatter/mainchamber) +"thG" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_1/teleporter) "thL" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -148892,19 +148816,6 @@ }, /turf/simulated/floor/airless, /area/horizon/engineering/atmos) -"tiQ" = ( -/obj/item/modular_computer/console/preset/command/account{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline_corner/security, -/obj/effect/floor_decal/industrial/outline_segment/security{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline_segment/security{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/command/heads/xo_desk) "tjj" = ( /obj/structure/shuttle_part/scc/scout{ icon_state = "1,10" @@ -149209,6 +149120,12 @@ /obj/structure/machinery/power/apc/low/east, /turf/simulated/floor/carpet/rubber, /area/horizon/rnd/xenoarch/spectrometry) +"tlw" = ( +/obj/effect/floor_decal/spline/plain/brown{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) "tly" = ( /obj/structure/cable{ icon_state = "1-2" @@ -149353,6 +149270,19 @@ }, /turf/simulated/floor/marble/dark, /area/horizon/holodeck/source_trinary) +"tmi" = ( +/obj/structure/table/reinforced/steel, +/obj/structure/machinery/door/window/desk/northright{ + name = "Machinist Workshop Desk"; + req_one_access = list(29) + }, +/obj/structure/machinery/door/firedoor, +/obj/structure/machinery/door/blast/shutters{ + id = "shutters_deck2_workshopdesk"; + name = "Machinist Workshop Desk Shutter" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) "tml" = ( /obj/item/hullbeacon/red, /obj/effect/floor_decal/industrial/warning, @@ -149382,6 +149312,16 @@ }, /turf/simulated/floor/carpet/cyan, /area/centcom/ferry) +"tmD" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/spline/fancy/wood/cee{ + dir = 8 + }, +/obj/structure/machinery/light/small/floor, +/turf/simulated/floor/wood, +/area/horizon/command/heads/xo_office) "tmF" = ( /obj/structure/shuttle_part/scc/scout{ icon_state = "2,4"; @@ -149499,6 +149439,17 @@ /obj/structure/lattice/catwalk/indoor, /turf/simulated/floor/plating, /area/horizon/maintenance/substation/xenoarchaeology) +"tnf" = ( +/obj/effect/floor_decal/corner_wide/brown/diagonal, +/obj/structure/machinery/disposal/small/west, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain/purple{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/operations/machinist) "tng" = ( /obj/structure/tank_wall/hydrogen{ density = 0; @@ -149652,6 +149603,18 @@ }, /turf/simulated/floor/reinforced, /area/horizon/weapons/grauwolf) +"tnU" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/item/reagent_containers/glass/bucket, +/obj/structure/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/rnd/xenobiology/xenoflora) "tnV" = ( /obj/structure/machinery/r_n_d/server/centcom, /turf/unsimulated/floor{ @@ -149839,6 +149802,18 @@ }, /turf/simulated/floor/tiled/gunmetal, /area/horizon/operations/warehouse) +"tph" = ( +/obj/structure/table/reinforced/glass, +/obj/item/storage/box/unique/sharps{ + pixel_x = -8; + pixel_y = 3 + }, +/obj/structure/machinery/power/outlet{ + pixel_y = 3 + }, +/obj/effect/floor_decal/spline/plain/red, +/turf/simulated/floor/carpet/rubber, +/area/horizon/operations/machinist/surgicalbay) "tpj" = ( /obj/structure/machinery/door/blast/shutters{ dir = 2; @@ -150931,6 +150906,27 @@ }, /turf/simulated/floor/tiled, /area/horizon/hallway/primary/deck_3/central) +"twf" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/horizon/command/heads/xo_office) "twh" = ( /obj/structure/machinery/hologram/holopad, /obj/structure/bed/stool/chair/office/dark{ @@ -151380,6 +151376,20 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/service/mess_hall) +"tyM" = ( +/obj/structure/cable/green, +/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ + id = "xo_privacy_tint" + }, +/obj/structure/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor, +/area/horizon/command/heads/xo_desk) "tyT" = ( /obj/structure/machinery/light{ dir = 4 @@ -152153,29 +152163,6 @@ "tEm" = ( /turf/simulated/floor/redgrid, /area/horizon/command/bridge/selfdestruct) -"tEo" = ( -/obj/structure/machinery/door/firedoor{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/structure/grille, -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/machinery/door/blast/shutters{ - dir = 4; - id = "xo_office_window_shutter"; - name = "Safety Shutter" - }, -/obj/structure/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor, -/area/horizon/command/heads/xo_office) "tEq" = ( /turf/simulated/floor/exoplanet/water/shallow{ dir = 9; @@ -152347,6 +152334,20 @@ }, /turf/unsimulated/floor, /area/centcom/control) +"tFr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/airlock/maintenance{ + name = "Deck 2 Stairwell Maintenance"; + req_one_access = list(12,22,25,67,29) + }, +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/firedoor, +/obj/effect/map_effect/door_helper/unres, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/stairwell/starboard/deck_2) "tFs" = ( /obj/structure/window/reinforced/crescent{ dir = 1 @@ -152542,6 +152543,29 @@ /obj/structure/platform, /turf/simulated/floor/tiled/white, /area/horizon/rnd/xenoarch/atrium) +"tGg" = ( +/obj/structure/machinery/door/firedoor{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/structure/grille, +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/machinery/door/blast/shutters{ + dir = 4; + id = "xo_office_window_shutter"; + name = "Safety Shutter" + }, +/obj/structure/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor, +/area/horizon/command/heads/xo_office) "tGl" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ @@ -152819,6 +152843,23 @@ }, /turf/simulated/floor/wood, /area/horizon/rnd/hallway) +"tHU" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/operations/machinist) "tIl" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -152958,11 +152999,6 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/crew/washroom/deck_3) -"tJu" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/obj/structure/machinery/vending/overloaders, -/turf/simulated/floor/wood, -/area/horizon/hallway/primary/deck_2/starboard) "tJw" = ( /obj/effect/floor_decal/corner/dark_blue/full{ dir = 8 @@ -153024,6 +153060,30 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/tcommsat/entrance) +"tJS" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/obj/structure/machinery/power/apc/south, +/obj/structure/cable/green, +/obj/structure/machinery/light_switch/west{ + dir = 4; + pixel_x = 22 + }, +/obj/item/towel_flat{ + pixel_x = -2; + pixel_y = 4; + name = "Ian's Bed"; + desc = "A dog blanket laid out on the floor; Ian prefers to sleep on the office chair."; + accent_color = "#336699"; + color = "#336699" + }, +/obj/item/toy/figure/corgi{ + pixel_x = -10 + }, +/mob/living/simple_animal/corgi/Ian, +/turf/simulated/floor/wood, +/area/horizon/command/heads/xo_office) "tJU" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 10 @@ -153418,23 +153478,6 @@ dir = 4 }, /area/horizon/maintenance/deck_1/main/starboard) -"tLU" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/obj/structure/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch_door/operations{ - dir = 1 - }, -/obj/structure/machinery/door/blast/shutters{ - id = "workshop_garage"; - name = "Machinist Workshop Garage Shutter" - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/machinist) "tMo" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -153589,22 +153632,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/operations/office) -"tND" = ( -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ - id = "xo_privacy_tint" - }, -/obj/structure/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor, -/area/horizon/command/heads/xo_desk) "tNI" = ( /obj/structure/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 @@ -153768,6 +153795,19 @@ icon_state = "white" }, /area/tdome/tdomeobserve) +"tPk" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/heads/xo_desk) "tPl" = ( /obj/structure/machinery/atmospherics/pipe/simple/visible/purple, /obj/effect/floor_decal/industrial/outline/yellow, @@ -153777,20 +153817,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/atmos) -"tPq" = ( -/obj/structure/machinery/disposal/small/west{ - dir = 1; - pixel_x = 0; - pixel_y = -14 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/floor_decal/corner_wide/black{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/operations/machinist) "tPu" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ @@ -153804,6 +153830,13 @@ }, /turf/simulated/floor/tiled, /area/horizon/hallway/primary/deck_3/central) +"tPy" = ( +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/horizon/storage/eva) "tPB" = ( /obj/structure/bed/stool/chair{ dir = 8 @@ -154260,20 +154293,6 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_3/aft/port) -"tTg" = ( -/obj/structure/table/reinforced/steel, -/obj/item/eftpos{ - eftpos_name = "Executive Officers EFTPOS scanner"; - pixel_x = -6; - pixel_y = 3 - }, -/obj/item/quikpay{ - pixel_y = 4; - shop_name = "Executive Officers Quikpay"; - pixel_x = 6 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/command/heads/xo_desk) "tTn" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -154414,6 +154433,11 @@ /obj/effect/large_stock_marker, /turf/simulated/floor/tiled/gunmetal, /area/horizon/operations/warehouse) +"tUG" = ( +/obj/structure/machinery/mineral/rigpress, +/obj/structure/machinery/alarm/east, +/turf/simulated/floor/tiled/full, +/area/horizon/operations/machinist) "tUH" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -154455,6 +154479,11 @@ }, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_lasertag) +"tUO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/random/loot, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/medical/cryo) "tUS" = ( /obj/effect/floor_decal/industrial/warning, /obj/random/dirt_75, @@ -155234,12 +155263,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/hallway/primary/deck_2/central) -"uao" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/horizon/operations/machinist) "uaq" = ( /obj/item/material/kitchen/rollingpin{ pixel_x = 2; @@ -155321,6 +155344,22 @@ /obj/effect/landmark/latejoin, /turf/simulated/floor/tiled, /area/horizon/crew/resdeck/living_quarters_lift) +"ubj" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/heads/xo_desk) "ubm" = ( /obj/structure/machinery/air_sensor{ frequency = 1442; @@ -155486,25 +155525,6 @@ /obj/structure/machinery/portable_atmospherics/canister/nitrogen/prechilled, /turf/simulated/floor/plating, /area/horizon/engineering/reactor/supermatter/mainchamber) -"uca" = ( -/obj/effect/floor_decal/corner/brown/full{ - dir = 4 - }, -/obj/structure/machinery/papershredder{ - pixel_x = -6 - }, -/obj/structure/filingcabinet/filingcabinet{ - pixel_x = 9 - }, -/obj/structure/machinery/light_switch/east{ - pixel_y = 9 - }, -/obj/random/pottedplant_small{ - pixel_x = 10; - pixel_y = 13 - }, -/turf/simulated/floor/tiled, -/area/horizon/operations/machinist) "uce" = ( /obj/structure/machinery/door/firedoor, /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -155837,6 +155857,37 @@ }, /turf/unsimulated/floor, /area/centcom/evac) +"uet" = ( +/obj/structure/table/reinforced/steel, +/obj/structure/machinery/power/apc/south, +/obj/structure/cable/green, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/item/paper_scanner, +/obj/item/stack/wrapping_paper{ + pixel_y = 4; + pixel_x = 6 + }, +/obj/item/stack/packageWrap, +/obj/item/destTagger{ + pixel_x = 13; + pixel_y = -2 + }, +/obj/item/clipboard{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/item/hand_labeler{ + pixel_y = 8; + pixel_x = 1 + }, +/obj/item/paper/stickynotes/pad/random{ + pixel_x = 4; + pixel_y = -1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/command/heads/xo_desk) "uez" = ( /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/horizon/maintenance/deck_3/security/port) @@ -155994,19 +156045,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"ufT" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/horizon/operations/machinist) "ufY" = ( /obj/structure/table/wood, /obj/effect/decal/fake_object{ @@ -156185,6 +156223,32 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/service/mess_hall) +"uhj" = ( +/obj/structure/machinery/door/firedoor{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/structure/grille, +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/machinery/door/blast/shutters{ + dir = 4; + id = "xo_office_window_shutter"; + name = "Safety Shutter" + }, +/obj/structure/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor, +/area/horizon/command/heads/xo_office) "uhm" = ( /obj/structure/machinery/door/airlock/command{ id_tag = "rep_office_a"; @@ -157090,6 +157154,38 @@ }, /turf/simulated/floor/tiled, /area/horizon/hallway/primary/deck_2/central) +"umK" = ( +/obj/structure/table/reinforced/glass, +/obj/structure/machinery/button/switch/windowtint{ + dir = 1; + id = "workshopsurgery"; + pixel_x = 1; + pixel_y = -1 + }, +/obj/structure/machinery/button/switch/holosign{ + dir = 1; + id = "workshop_surgery"; + pixel_x = 8; + pixel_y = -1 + }, +/obj/item/reagent_containers/spray/cleaner/surgical{ + pixel_x = -8; + pixel_y = 11 + }, +/obj/item/reagent_containers/spray/cleaner/surgical{ + pixel_x = -8; + pixel_y = 1 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/roller_rack/two{ + pixel_y = 14; + pixel_x = 10 + }, +/obj/effect/floor_decal/spline/plain/red, +/turf/simulated/floor/carpet/rubber, +/area/horizon/operations/machinist/surgicalbay) "umM" = ( /obj/effect/floor_decal/spline/fancy/wood/corner{ dir = 1 @@ -157275,6 +157371,16 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/service/custodial) +"unO" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/structure/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/machinery/alarm/north, +/turf/simulated/floor/tiled, +/area/horizon/security/checkpoint2) "unU" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -157307,6 +157413,10 @@ }, /turf/simulated/floor/exoplanet/barren, /area/centcom/shared_dream) +"uoj" = ( +/obj/effect/floor_decal/industrial/hatch/service, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/hydroponics) "uoy" = ( /obj/item/tape/engineering{ icon_state = "engineering_door" @@ -157544,6 +157654,24 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/checkpoint) +"uqc" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 8 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/machinery/door/airlock/command{ + dir = 1; + name = "Executive Officer's Desk"; + req_access = list(57) + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/command/heads/xo_desk) "uqd" = ( /obj/effect/floor_decal/corner/brown{ dir = 5 @@ -157598,43 +157726,6 @@ }, /turf/unsimulated/floor, /area/centcom/holding) -"uqq" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/table/steel, -/obj/effect/floor_decal/spline/plain/brown{ - dir = 8 - }, -/obj/item/healthanalyzer{ - pixel_y = 12 - }, -/obj/item/flash/synthetic{ - pixel_x = -5; - pixel_y = 12 - }, -/obj/item/flash/synthetic{ - pixel_x = -5; - pixel_y = 12 - }, -/obj/item/flash/synthetic{ - pixel_x = -5; - pixel_y = 12 - }, -/obj/item/flash/synthetic{ - pixel_x = -5; - pixel_y = 12 - }, -/obj/item/flash/synthetic{ - pixel_x = -5; - pixel_y = 12 - }, -/obj/item/flash/synthetic{ - pixel_x = -5; - pixel_y = 12 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/machinist) "uqw" = ( /obj/effect/floor_decal/corner/dark_blue/full, /obj/random/pottedplant, @@ -158164,6 +158255,16 @@ "uty" = ( /turf/simulated/wall, /area/horizon/maintenance/deck_3/security/starboard) +"utB" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/starboard) "utC" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 5 @@ -158565,24 +158666,6 @@ /obj/structure/lattice/catwalk/indoor, /turf/simulated/open/airless, /area/horizon/exterior) -"uwi" = ( -/obj/structure/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch_door/yellow{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/machinery/door/airlock/command{ - dir = 1; - name = "Executive Officer's Office"; - req_access = list(57) - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/command/heads/xo_office) "uwk" = ( /obj/structure/machinery/light{ dir = 1 @@ -158823,6 +158906,13 @@ }, /turf/simulated/floor/carpet/rubber, /area/horizon/engineering/reactor/indra/mainchamber) +"uxB" = ( +/obj/structure/cable/green, +/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ + id = "xo_privacy_tint" + }, +/turf/simulated/floor, +/area/horizon/command/heads/xo_desk) "uxI" = ( /obj/effect/decal/cleanable/liquid_fuel, /turf/unsimulated/floor, @@ -158969,18 +159059,6 @@ name = "coast" }, /area/horizon/holodeck/source_konyang) -"uyO" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 8 - }, -/obj/structure/machinery/light/floor{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/horizon/command/bridge/meeting_room) "uyR" = ( /obj/structure/dueling_table/no_collide/above_layer{ icon_state = "top_right" @@ -159068,6 +159146,14 @@ /obj/item/radio/intercom/north, /turf/simulated/floor/tiled/white, /area/horizon/medical/surgery) +"uzx" = ( +/obj/structure/table/reinforced/steel, +/obj/item/reagent_containers/glass/beaker/large{ + pixel_x = 3; + pixel_y = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) "uzz" = ( /obj/effect/floor_decal/spline/plain{ dir = 4 @@ -159263,6 +159349,22 @@ }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) +"uAL" = ( +/obj/effect/floor_decal/spline/fancy/wood/cee{ + dir = 1 + }, +/obj/structure/machinery/keycard_auth{ + dir = 1; + pixel_y = 34; + pixel_x = 1 + }, +/obj/item/radio/intercom/ship/north{ + pixel_y = 16; + pixel_x = -2 + }, +/obj/structure/machinery/light/small/floor, +/turf/simulated/floor/wood, +/area/horizon/command/heads/xo_office) "uAN" = ( /obj/effect/floor_decal/corner/yellow/full{ dir = 1 @@ -159390,18 +159492,6 @@ /obj/effect/floor_decal/corner/paleblue, /turf/unsimulated/floor, /area/centcom/legion) -"uBL" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/railing/mapped, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/red{ - dir = 8 - }, -/obj/random/maintenance_junk_or_loot, -/turf/simulated/floor/tiled/dark, -/area/horizon/service/custodial/disposals/deck_1) "uBN" = ( /obj/structure/tank_wall/hydrogen{ icon_state = "h14" @@ -160055,6 +160145,13 @@ /obj/item/radio/intercom/expedition/north, /turf/simulated/floor/tiled/dark/full, /area/horizon/shuttle/intrepid/main_compartment) +"uFx" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/decal/cleanable/cobweb2, +/obj/structure/closet/crate, +/obj/random/loot, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/auxatmos) "uFH" = ( /obj/structure/lattice, /obj/structure/machinery/atmospherics/pipe/simple/visible/red{ @@ -160087,15 +160184,6 @@ /obj/structure/bed/stool/chair/office/bridge/pilot, /turf/simulated/floor/tiled/dark, /area/horizon/command/bridge/controlroom) -"uFM" = ( -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ - id = "xo_conference_tint" - }, -/turf/simulated/floor, -/area/horizon/command/heads/xo_office) "uFQ" = ( /obj/structure/machinery/atmospherics/pipe/simple/visible/black{ dir = 4 @@ -160292,16 +160380,6 @@ /obj/effect/floor_decal/industrial/outline/red, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/hallway/aft) -"uGX" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/railing/mapped/no_density/low, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/machinery/recharge_station, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/machinist) "uHc" = ( /obj/structure/machinery/atmospherics/pipe/simple/visible/red{ dir = 8 @@ -160481,12 +160559,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/storage/eva) -"uIn" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/primary/deck_2/starboard) "uIo" = ( /obj/structure/railing/mapped{ dir = 4 @@ -160718,13 +160790,6 @@ /obj/structure/cable, /turf/simulated/floor/tiled/dark, /area/horizon/maintenance/deck_1/main/port) -"uJr" = ( -/obj/structure/platform, -/obj/structure/table/standard, -/obj/item/storage/box/fancy/tray/machinist, -/obj/effect/floor_decal/corner_wide/brown, -/turf/simulated/floor/tiled/white, -/area/horizon/operations/machinist/surgicalbay) "uJw" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 @@ -160878,11 +160943,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/operations/commissary) -"uKh" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/machinery/light, -/turf/simulated/floor/carpet/rubber, -/area/horizon/engineering/storage_hard/upper) "uKo" = ( /obj/effect/decal/cleanable/spiderling_remains, /turf/simulated/floor/exoplanet/barren/raskara, @@ -160908,6 +160968,21 @@ }, /turf/unsimulated/floor, /area/centcom/legion) +"uKB" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/obj/structure/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/controlroom) "uKC" = ( /obj/effect/floor_decal/snowdrift, /turf/simulated/floor/exoplanet/snow, @@ -161308,6 +161383,32 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/storage_hard/upper) +"uNB" = ( +/obj/structure/machinery/door/firedoor{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/structure/grille, +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/machinery/door/blast/shutters{ + dir = 4; + id = "xo_office_window_shutter"; + name = "Safety Shutter" + }, +/obj/structure/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor, +/area/horizon/command/heads/xo_office) "uNC" = ( /obj/structure/undies_wardrobe, /obj/structure/machinery/light{ @@ -161914,30 +162015,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/service/hydroponics) -"uRN" = ( -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/obj/structure/machinery/button/remote/blast_door{ - dir = 4; - id = "machinist_fab_shutters"; - name = "Fabrication Viewing Shutters"; - pixel_y = -35; - pixel_x = 23 - }, -/obj/structure/machinery/button/remote/blast_door{ - dir = 4; - pixel_y = -23; - id = "mech_bay_shutter"; - pixel_x = 23; - name = "Machinist Bay Shutters" - }, -/obj/structure/bed/stool/chair{ - dir = 8 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/horizon/operations/machinist) "uRY" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 @@ -162551,6 +162628,14 @@ }, /turf/unsimulated/floor, /area/centcom/specops) +"uVJ" = ( +/obj/structure/machinery/door/blast/shutters{ + id = "workshop_garage"; + name = "Machinist Workshop Garage Shutter" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) "uVV" = ( /obj/structure/table/standard, /obj/structure/cable/green{ @@ -162895,14 +162980,6 @@ density = 1 }, /area/antag/ninja) -"uXM" = ( -/obj/effect/floor_decal/corner_wide/black{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/secure_closet/machinist, -/turf/simulated/floor/tiled/white, -/area/horizon/operations/machinist) "uXP" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/fuel{ dir = 9 @@ -163018,6 +163095,25 @@ /obj/structure/machinery/alarm/north, /turf/simulated/floor/wood, /area/horizon/rnd/xenoarch/presentation) +"uZj" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/meeting_room) "uZk" = ( /obj/effect/floor_decal/corner/yellow{ dir = 9 @@ -163117,6 +163213,15 @@ /obj/structure/lattice/catwalk/indoor, /turf/simulated/floor/plating, /area/horizon/maintenance/substation/engineering/lower) +"uZW" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/effect/floor_decal/spline/plain/red{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/starboard) "vaa" = ( /obj/structure/machinery/door/blast/shutters/open{ dir = 2; @@ -163363,6 +163468,19 @@ /obj/structure/machinery/alarm/west, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/wing/port/far) +"vbV" = ( +/obj/effect/floor_decal/spline/fancy/wood/cee{ + dir = 8 + }, +/obj/structure/machinery/power/apc/north{ + is_critical = 1 + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/random/pottedplant, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/meeting_room) "vbW" = ( /obj/structure/table/reinforced/wood, /obj/item/reagent_containers/food/drinks/bottle/cognac{ @@ -163480,9 +163598,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/maintenance/deck_2/operations) -"vcr" = ( -/turf/simulated/wall/r_wall, -/area/horizon/command/heads/xo_office) "vcs" = ( /obj/structure/lattice/catwalk/indoor/grate/dark, /obj/structure/cable{ @@ -163865,6 +163980,18 @@ }, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_emptycourt) +"veR" = ( +/obj/effect/floor_decal/corner/purple{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/railing/mapped, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 8 + }, +/obj/random/maintenance_junk_or_loot, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/custodial/disposals/deck_1) "veX" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -164220,19 +164347,6 @@ /obj/effect/floor_decal/carpet, /turf/simulated/floor/holofloor/carpet, /area/horizon/holodeck/source_dininghall) -"vhY" = ( -/obj/structure/machinery/r_n_d/protolathe, -/obj/effect/floor_decal/corner_wide/black{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/machinery/camera{ - c_tag = "Operations - Machinist RnD Lab"; - network = list("Operations"); - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/operations/machinist) "vib" = ( /obj/effect/floor_decal/corner/dark_blue/diagonal, /obj/structure/machinery/atmospherics/unary/vent_pump/on{ @@ -164293,15 +164407,6 @@ /obj/structure/railing/mapped, /turf/simulated/open, /area/horizon/service/custodial/disposals/deck_2) -"viF" = ( -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ - id = "xo_office_tint" - }, -/turf/simulated/floor, -/area/horizon/command/heads/xo_office) "viG" = ( /obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ id = "aft_lounge_tint" @@ -164527,16 +164632,6 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/substation/research) -"vkm" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/platform/cutout{ - dir = 8 - }, -/obj/structure/platform_stairs/full/east_west_cap, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/machinist) "vkn" = ( /obj/structure/machinery/light/small, /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -165214,33 +165309,10 @@ /obj/structure/machinery/light/floor, /turf/simulated/floor/tiled, /area/horizon/hallway/primary/deck_2/central) -"vpe" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 8 - }, -/obj/effect/landmark/start{ - name = "Machinist" - }, -/obj/effect/floor_decal/spline/plain/brown, -/turf/simulated/floor/tiled/full, -/area/horizon/operations/machinist) "vpk" = ( /obj/effect/floor_decal/corner/white/diagonal, /turf/simulated/floor/tiled, /area/horizon/medical/paramedic) -"vpp" = ( -/obj/effect/floor_decal/spline/fancy/wood/cee{ - dir = 8 - }, -/obj/structure/machinery/power/apc/north{ - is_critical = 1 - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/random/pottedplant, -/turf/simulated/floor/wood, -/area/horizon/command/bridge/meeting_room) "vps" = ( /obj/structure/table/reinforced/steel, /obj/structure/machinery/light/small{ @@ -165462,23 +165534,6 @@ icon_state = "beach" }, /area/centcom/shared_dream) -"vrd" = ( -/obj/structure/machinery/disposal/small/west{ - dir = 1; - pixel_x = 0; - pixel_y = -14 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/floor_decal/corner_wide/brown{ - dir = 10 - }, -/obj/effect/floor_decal/corner_wide/brown{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/operations/machinist/surgicalbay) "vre" = ( /obj/structure/flora/ausbushes/ywflowers, /turf/simulated/floor/exoplanet/grass/grove, @@ -165936,27 +165991,6 @@ /obj/structure/machinery/alarm/west, /turf/simulated/floor/tiled, /area/horizon/security/hallway) -"vvx" = ( -/obj/effect/floor_decal/industrial/hatch_door/yellow, -/obj/structure/machinery/door/firedoor{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/maintenance{ - name = "Deck 2 Stairwell Maintenance"; - req_one_access = list(12,22,25,28,67); - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/maintenance/deck_2/service/starboard) "vvz" = ( /obj/structure/machinery/light{ dir = 8 @@ -165974,22 +166008,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/crew/vacantoffice) -"vvB" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/effect/floor_decal/industrial/outline_straight/yellow{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/machinist) "vvE" = ( /turf/simulated/wall/r_wall, /area/horizon/weapons/grauwolf) @@ -166376,18 +166394,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/hallway) -"vyz" = ( -/obj/structure/machinery/fabricator/autolathe, -/obj/effect/floor_decal/corner_wide/black/full, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/machinery/button/remote/blast_door{ - pixel_y = -20; - id = "machinist_fab_shutters"; - pixel_x = 6; - name = "Fabrication Viewing Shutters" - }, -/turf/simulated/floor/tiled/white, -/area/horizon/operations/machinist) "vyC" = ( /obj/structure/machinery/floodlight, /obj/effect/floor_decal/industrial/outline/operations, @@ -167047,6 +167053,13 @@ /obj/structure/trash_pile, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/auxatmos) +"vCS" = ( +/obj/effect/floor_decal/spline/plain/red, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/operations/machinist) "vCT" = ( /turf/unsimulated/wall/fakepdoor{ dir = 1; @@ -167203,6 +167216,18 @@ }, /turf/simulated/floor/wood, /area/horizon/command/heads/captain) +"vDF" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/effect/floor_decal/corner/dark_blue/full, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/machinery/disposal/small/east, +/obj/item/radio/intercom/south, +/turf/simulated/floor/tiled, +/area/horizon/security/hallway) "vDG" = ( /turf/simulated/floor/tiled/ramp/bottom, /area/merchant_station) @@ -167475,13 +167500,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/service/custodial/disposals/deck_1) -"vFa" = ( -/obj/structure/table/reinforced/wood, -/obj/item/modular_computer/laptop/preset/command/xo{ - pixel_y = 10 - }, -/turf/simulated/floor/carpet, -/area/horizon/command/heads/xo_office) "vFb" = ( /obj/structure/window/shuttle/scc_space_ship, /obj/structure/grille, @@ -167893,6 +167911,15 @@ }, /turf/unsimulated/floor, /area/antag/mercenary) +"vIy" = ( +/obj/structure/machinery/mech_recharger, +/mob/living/heavy_vehicle/premade/random/boring, +/obj/effect/floor_decal/industrial/outline/red, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) "vIN" = ( /obj/structure/sign/flag/idris{ pixel_y = 32 @@ -168173,29 +168200,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/engineering/atmos/turbine) -"vKO" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 9 - }, -/obj/structure/machinery/light_switch{ - dir = 8; - pixel_x = -22; - pixel_y = 23 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/horizon/service/custodial/auxiliary) "vKQ" = ( /obj/effect/decal/fake_object{ icon = 'icons/misc/beach.dmi'; @@ -168508,14 +168512,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/engineering/atmos/turbine) -"vND" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/obj/structure/machinery/light_switch/east, -/obj/structure/machinery/alarm/north, -/turf/simulated/floor/wood, -/area/horizon/command/bridge/meeting_room) "vNF" = ( /obj/effect/floor_decal/industrial/warning, /obj/structure/machinery/light, @@ -168532,6 +168528,47 @@ /obj/structure/machinery/power/apc/low/north, /turf/simulated/floor/tiled, /area/horizon/maintenance/deck_3/aft/holodeck) +"vNJ" = ( +/obj/structure/platform_deco{ + dir = 8 + }, +/obj/effect/floor_decal/corner_wide/brown/diagonal, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/closet/walllocker/medical/secure{ + pixel_y = 32; + req_access = list(29) + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/item/storage/box/unique/freezer/organcooler, +/obj/item/cane/crutch, +/obj/item/cane/crutch, +/obj/item/tank/oxygen, +/obj/item/reagent_containers/blood/OMinus, +/obj/item/reagent_containers/blood/sbs, +/obj/item/clothing/mask/breath/medical, +/obj/item/storage/firstaid/regular, +/obj/item/suit_cooling_unit, +/obj/item/suit_cooling_unit, +/obj/item/deployable_kit/iv_drip, +/obj/effect/floor_decal/spline/plain/red{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/operations/machinist/surgicalbay) "vNK" = ( /obj/structure/machinery/atmospherics/pipe/manifold/hidden{ dir = 8 @@ -169415,21 +169452,6 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/medical/hallway) -"vUn" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" - }, -/obj/structure/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/command/heads/xo_desk) "vUp" = ( /obj/item/clothing/accessory/storage/pouches/black{ pixel_x = -12; @@ -169574,6 +169596,11 @@ }, /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/horizon/command/bridge/meeting_room) +"vUZ" = ( +/obj/structure/machinery/vending/overloaders, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/hallway/primary/deck_2/starboard) "vVc" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -170543,22 +170570,6 @@ /obj/structure/bed/roller, /turf/simulated/floor/tiled/dark, /area/shuttle/mercenary) -"waN" = ( -/obj/effect/floor_decal/spline/fancy/wood/cee{ - dir = 1 - }, -/obj/structure/machinery/keycard_auth{ - dir = 1; - pixel_y = 34; - pixel_x = 1 - }, -/obj/item/radio/intercom/ship/north{ - pixel_y = 16; - pixel_x = -2 - }, -/obj/structure/machinery/light/small/floor, -/turf/simulated/floor/wood, -/area/horizon/command/heads/xo_office) "waX" = ( /turf/simulated/floor/wood, /area/horizon/command/heads/om) @@ -171394,20 +171405,6 @@ /obj/structure/machinery/portable_atmospherics/canister/carbon_dioxide, /turf/simulated/floor/carpet/rubber, /area/horizon/engineering/storage_hard/upper) -"wfB" = ( -/obj/structure/machinery/light, -/obj/item/toy/comic/inspector{ - pixel_x = -3 - }, -/obj/item/toy/comic/outlandish_tales{ - pixel_x = 2 - }, -/obj/item/toy/comic/magazine{ - pixel_x = 7 - }, -/obj/structure/table/wood, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/machinist) "wfK" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/universal{ dir = 4 @@ -171518,6 +171515,15 @@ /obj/effect/floor_decal/industrial/outline/operations, /turf/simulated/floor/tiled/dark, /area/horizon/shuttle/mining) +"wgy" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 7 + }, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/meeting_room) "wgB" = ( /obj/structure/machinery/porta_turret/crescent, /obj/effect/floor_decal/industrial/warning/full, @@ -171560,6 +171566,14 @@ /obj/effect/floor_decal/industrial/hatch_door/yellow, /turf/simulated/floor/tiled/full, /area/horizon/rnd/hallway) +"wgL" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/obj/structure/machinery/door/blast/shutters/open{ + id = "mech_bay_shutter"; + name = "Mech Bay Shutters" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) "wgP" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 6 @@ -171927,6 +171941,10 @@ /obj/structure/machinery/atmospherics/pipe/simple/visible/cyan, /turf/simulated/floor/tiled/dark, /area/horizon/engineering/reactor/supermatter/waste) +"wjx" = ( +/obj/structure/sign/flag/scc/unmovable, +/turf/simulated/wall/r_wall, +/area/horizon/command/heads/xo_desk) "wjB" = ( /obj/effect/map_effect/window_spawner/full/reinforced/firedoor, /turf/simulated/floor/plating, @@ -172463,6 +172481,15 @@ icon_state = "dark_preview" }, /area/centcom/checkpoint/fore) +"wmS" = ( +/obj/structure/machinery/conveyor{ + id = "Robocompo" + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) "wmT" = ( /obj/structure/machinery/camera/network/command{ c_tag = "AI Core - External"; @@ -172620,6 +172647,17 @@ }, /turf/unsimulated/floor, /area/antag/mercenary) +"wnY" = ( +/obj/structure/machinery/photocopier, +/obj/structure/machinery/firealarm/north{ + pixel_y = 37 + }, +/obj/structure/machinery/recharger/wallcharger{ + pixel_x = 5; + pixel_y = 20 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/command/heads/xo_office) "woc" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 4 @@ -172707,24 +172745,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/hangar/operations) -"wor" = ( -/obj/effect/map_effect/door_helper/unres{ - dir = 8 - }, -/obj/structure/machinery/door/firedoor{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch_door/operations{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/mining{ - dir = 4; - name = "Machinist Workshop"; - req_access = list(29); - id_tag = "workshop_door" - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/machinist) "wov" = ( /obj/structure/disposalpipe/segment{ icon_state = "pipe-c" @@ -172959,6 +172979,30 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_3/aft/starboard/far) +"wql" = ( +/obj/structure/table/reinforced/wood, +/obj/item/paper_bin{ + pixel_y = 3; + pixel_x = 4 + }, +/obj/item/stamp/denied{ + pixel_x = -7; + pixel_y = 6 + }, +/obj/item/stamp/xo{ + pixel_x = -7 + }, +/obj/item/folder/sec{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/pen/multi{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/structure/machinery/newscaster/security_unit/north, +/turf/simulated/floor/carpet, +/area/horizon/command/heads/xo_office) "wqm" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -173883,6 +173927,16 @@ /obj/structure/machinery/light, /turf/unsimulated/floor, /area/centcom/ferry) +"wuM" = ( +/obj/effect/floor_decal/corner_wide/brown/diagonal, +/obj/effect/floor_decal/spline/plain/purple{ + dir = 9 + }, +/obj/structure/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/operations/machinist) "wuS" = ( /obj/effect/floor_decal/industrial/warning{ dir = 6 @@ -173910,21 +173964,6 @@ "wuX" = ( /turf/simulated/wall, /area/horizon/engineering/atmos/storage_maintenance) -"wvm" = ( -/obj/structure/closet/crate/medical, -/obj/item/tank/anesthetic, -/obj/item/tank/anesthetic, -/obj/item/tank/oxygen, -/obj/effect/floor_decal/corner_wide/brown{ - dir = 10 - }, -/obj/effect/floor_decal/corner_wide/brown{ - dir = 4 - }, -/obj/item/suit_cooling_unit, -/obj/item/suit_cooling_unit, -/turf/simulated/floor/tiled/white, -/area/horizon/operations/machinist/surgicalbay) "wvs" = ( /obj/structure/window/shuttle/scc_space_ship, /obj/structure/grille/diagonal{ @@ -174270,6 +174309,22 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/engineering/storage/tech) +"wxu" = ( +/obj/structure/table/reinforced/steel, +/obj/structure/machinery/cell_charger{ + pixel_y = 10; + pixel_x = -2 + }, +/obj/structure/machinery/cell_charger{ + pixel_y = 2; + pixel_x = -2 + }, +/obj/structure/machinery/recharger{ + pixel_y = 4; + pixel_x = 13 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) "wxv" = ( /obj/structure/table/standard{ no_cargo = 1 @@ -174693,6 +174748,23 @@ }, /turf/simulated/floor/exoplanet/grass/grove, /area/centcom/shared_dream) +"wAd" = ( +/obj/effect/floor_decal/corner_wide/brown/diagonal, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/spline/plain/purple{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/operations/machinist) "wAe" = ( /obj/effect/floor_decal/corner/lime/full{ dir = 4 @@ -175348,21 +175420,6 @@ }, /turf/simulated/floor/plating, /area/horizon/shuttle/intrepid/port_compartment) -"wFf" = ( -/obj/structure/sign/directions/prop{ - dir = 4; - pixel_x = 32; - pixel_y = 24 - }, -/obj/structure/sign/directions/prop{ - dir = 4; - pixel_y = 24 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/engineering/atmos/storage_maintenance) "wFj" = ( /obj/structure/flora/ausbushes/sparsegrass, /obj/effect/floor_decal/spline/fancy/wood/corner{ @@ -175912,6 +175969,20 @@ }, /turf/unsimulated/floor, /area/antag/loner) +"wJd" = ( +/obj/effect/floor_decal/corner_wide/brown/diagonal, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/operations/machinist/surgicalbay) "wJj" = ( /obj/effect/floor_decal/corner/lime{ dir = 10 @@ -176273,19 +176344,6 @@ /obj/effect/large_stock_marker, /turf/simulated/floor/tiled, /area/merchant_station/warehouse) -"wMg" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner_wide/brown{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/brown{ - dir = 9 - }, -/obj/structure/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/operations/machinist/surgicalbay) "wMj" = ( /obj/effect/decal{ anchored = 1; @@ -176601,6 +176659,18 @@ }, /turf/simulated/floor/tiled, /area/horizon/hallway/primary/deck_3/central) +"wNZ" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/operations/machinist) "wOe" = ( /obj/structure/table/standard, /obj/item/clothing/glasses/hud/health, @@ -176900,22 +176970,6 @@ /obj/random/maintenance_junk_or_loot, /turf/simulated/floor/tiled/dark, /area/horizon/maintenance/deck_2/research) -"wPm" = ( -/obj/item/reagent_containers/glass/beaker/large, -/obj/structure/reagent_dispensers/acid{ - pixel_x = -32 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/platform, -/obj/structure/machinery/r_n_d/circuit_imprinter, -/obj/effect/floor_decal/corner_wide/black{ - dir = 10 - }, -/obj/effect/floor_decal/corner_wide/black{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/operations/machinist) "wPr" = ( /obj/effect/floor_decal/corner/brown{ dir = 5 @@ -177228,6 +177282,12 @@ /obj/effect/floor_decal/corner/brown/full, /turf/simulated/floor/tiled, /area/horizon/hangar/operations) +"wRc" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/obj/effect/floor_decal/industrial/outline/red, +/obj/structure/machinery/firealarm/south, +/turf/simulated/floor/tiled, +/area/horizon/crew/emergency_closet/deck_2/starboard) "wRd" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 8 @@ -178093,6 +178153,12 @@ /obj/effect/floor_decal/corner/dark_blue/diagonal, /turf/simulated/floor/tiled/dark, /area/horizon/security/checkpoint) +"wWi" = ( +/obj/effect/floor_decal/spline/plain/brown{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/operations/machinist) "wWn" = ( /obj/effect/floor_decal/corner_wide/blue{ dir = 10 @@ -178327,25 +178393,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/shuttle/intrepid/starboard_compartment) -"wXR" = ( -/obj/effect/floor_decal/corner/mauve/full, -/obj/structure/machinery/button/remote/airlock{ - id = "xeno_entrance_int_a"; - name = "Xenobiology External Access Bolts"; - pixel_y = 3; - req_access = list(55); - specialfunctions = 4; - dir = 8; - pixel_x = -22; - desiredstate = 1 - }, -/obj/structure/machinery/camera/network/research{ - c_tag = "Research - Xenobiology Entrance"; - dir = 1; - network = list("Research","Xeno_Bio") - }, -/turf/simulated/floor/tiled/white, -/area/horizon/rnd/xenobiology) "wYa" = ( /obj/structure/machinery/light{ dir = 1 @@ -178368,6 +178415,21 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/operations/lobby) +"wYc" = ( +/obj/structure/machinery/conveyor_switch/oneway{ + desc = "A conveyor control switch. It appears to only go in one direction. Controls the components conveyor belt."; + id = "Robocompo"; + pixel_y = 16; + pixel_x = -7 + }, +/obj/effect/floor_decal/spline/plain/red{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain/red{ + dir = 8 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/operations/machinist) "wYd" = ( /obj/structure/machinery/atmospherics/pipe/simple/visible/purple, /obj/structure/lattice/catwalk/indoor, @@ -178526,6 +178588,25 @@ /obj/structure/target_stake, /turf/simulated/floor/tiled/dark/full, /area/horizon/rnd/test_range) +"wYF" = ( +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-c" + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/effect/floor_decal/spline/plain/brown{ + dir = 4 + }, +/obj/structure/machinery/light/floor, +/turf/simulated/floor/tiled/dark, +/area/horizon/operations/machinist) "wYH" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/table/rack, @@ -178979,6 +179060,17 @@ }, /turf/simulated/floor/plating, /area/horizon/hallway/primary/deck_2/starboard) +"xbb" = ( +/obj/structure/bed/stool/chair/office/light{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Machinist" + }, +/obj/structure/cable/green, +/obj/structure/machinery/power/apc/east, +/turf/simulated/floor/carpet/rubber, +/area/horizon/operations/machinist/surgicalbay) "xbc" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -179203,13 +179295,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/checkpoint2) -"xcR" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/obj/structure/machinery/firealarm/south, -/turf/simulated/floor/tiled, -/area/horizon/hallway/primary/deck_2/starboard) "xcV" = ( /obj/structure/shuttle_part/scc/scout{ icon_state = "5,11" @@ -179765,24 +179850,6 @@ /obj/structure/table/reinforced/wood, /turf/unsimulated/floor/wood, /area/centcom/bar) -"xgk" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/industrial/hatch_door/yellow{ - dir = 8 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/machinery/door/airlock/command{ - dir = 1; - name = "Executive Officer's Desk"; - req_access = list(57) - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/command/heads/xo_desk) "xgl" = ( /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, @@ -180594,6 +180661,19 @@ }, /turf/unsimulated/floor, /area/antag/mercenary) +"xmh" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/machinery/light/small/floor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) "xml" = ( /obj/effect/floor_decal/industrial/outline/service, /obj/structure/closet/crate/coffin, @@ -180814,20 +180894,6 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/horizon/operations/mining_main/refinery) -"xnC" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/machinery/disposal/small/north, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/horizon/command/heads/xo_office) "xnD" = ( /obj/effect/floor_decal/corner/dark_green/diagonal, /obj/effect/floor_decal/spline/plain/grey{ @@ -181031,6 +181097,16 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/medical/equipment) +"xoV" = ( +/obj/structure/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/effect/floor_decal/spline/plain/corner/red{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/starboard) "xoW" = ( /obj/structure/machinery/teleport_odyssey, /obj/effect/decal/warning_stripes, @@ -182226,30 +182302,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/hallway) -"xwG" = ( -/obj/item/storage/bag/circuits/basic{ - pixel_y = 2; - pixel_x = 1 - }, -/obj/structure/table/steel, -/obj/effect/floor_decal/corner/brown/full{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/operations/machinist) -"xwJ" = ( -/obj/effect/floor_decal/corner/dark_green, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/primary/deck_2/starboard) "xwL" = ( /obj/structure/sign/urban/restroom{ pixel_x = 4; @@ -182289,25 +182341,6 @@ /obj/effect/floor_decal/industrial/hatch_door/yellow, /turf/simulated/floor/tiled/dark/full, /area/horizon/maintenance/deck_2/research) -"xwX" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/disposaloutlet{ - dir = 4 - }, -/obj/structure/machinery/door/window{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/machinist) "xxb" = ( /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, @@ -182639,32 +182672,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/maintenance/deck_2/cargo_compartment) -"xyY" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/firedoor{ - req_one_access = list(24,11,67,73); - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch_door/yellow, -/obj/structure/machinery/door/airlock/command{ - dir = 4; - id_tag = "conference_room"; - name = "Conference Room"; - req_one_access = list(19,38,72) - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/full, -/area/horizon/command/bridge/meeting_room) "xyZ" = ( /obj/structure/railing/mapped, /obj/structure/machinery/light{ @@ -183064,6 +183071,27 @@ /obj/structure/machinery/light/floor, /turf/simulated/floor/tiled, /area/horizon/hallway/primary/deck_3/starboard) +"xBw" = ( +/obj/effect/floor_decal/corner_wide/brown/diagonal, +/obj/effect/floor_decal/spline/plain/purple{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/machinery/hologram/holopad, +/turf/simulated/floor/tiled/white, +/area/horizon/operations/machinist/surgicalbay) "xBE" = ( /obj/effect/floor_decal/corner/brown{ dir = 5 @@ -183990,6 +184018,29 @@ icon_state = "2,5" }, /area/shuttle/legion) +"xIe" = ( +/obj/structure/table/reinforced/steel, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/machinery/camera/network/command{ + c_tag = "Bridge - XO Desk"; + dir = 8 + }, +/obj/structure/machinery/chemical_dispenser/coffee/full{ + pixel_y = 8; + pixel_x = 2 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup/scc{ + pixel_x = -1; + pixel_y = 2 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup/scc/alt{ + pixel_x = 7; + pixel_y = 2 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/command/heads/xo_desk) "xIi" = ( /obj/effect/floor_decal/corner_wide/pink/diagonal{ dir = 4 @@ -184184,16 +184235,6 @@ /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, /area/horizon/ai/upload) -"xIW" = ( -/obj/structure/machinery/papershredder{ - pixel_x = -6 - }, -/obj/structure/filingcabinet/filingcabinet{ - pixel_x = 9; - pixel_y = 1 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/command/heads/xo_office) "xIY" = ( /obj/structure/bed/stool/chair/office/light{ dir = 8 @@ -184213,6 +184254,15 @@ }, /turf/simulated/floor/plating, /area/horizon/engineering/atmos/air) +"xJc" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_2/starboard) "xJm" = ( /obj/structure/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -184413,14 +184463,6 @@ /obj/effect/floor_decal/industrial/hatch/grey, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"xKJ" = ( -/obj/structure/machinery/light/spot{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/firefighting_closet, -/obj/structure/extinguisher_cabinet/east, -/turf/simulated/floor/tiled/dark, -/area/horizon/hangar/auxiliary) "xKQ" = ( /obj/effect/landmark/latejoinlift, /obj/structure/disposalpipe/junction{ @@ -184446,15 +184488,6 @@ icon_state = "dark_preview" }, /area/centcom/control) -"xKW" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 7 - }, -/turf/simulated/floor/wood, -/area/horizon/command/bridge/meeting_room) "xLf" = ( /obj/structure/table/standard{ no_cargo = 1 @@ -185160,6 +185193,14 @@ /obj/structure/machinery/firealarm/east, /turf/simulated/floor/tiled/gunmetal, /area/horizon/operations/warehouse) +"xQf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_3/security/starboard) "xQs" = ( /obj/structure/table/rack, /obj/item/storage/box/tactical/flashbangs{ @@ -185414,34 +185455,6 @@ }, /turf/simulated/floor/holofloor/carpet, /area/horizon/holodeck/source_courtroom) -"xSi" = ( -/obj/structure/machinery/door/firedoor{ - req_one_access = list(24,11,67,73); - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch_door/yellow, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/machinery/door/airlock/command{ - dir = 4; - name = "Executive Officer's Office"; - req_access = list(57) - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/command/heads/xo_office) "xSl" = ( /obj/structure/machinery/computer/fusion/core_control/terminal{ initial_id_tag = "horizon_fusion" @@ -185648,6 +185661,15 @@ }, /turf/simulated/open, /area/horizon/hallway/primary/deck_2/central) +"xTD" = ( +/obj/item/reagent_containers/glass/bucket, +/obj/item/reagent_containers/glass/bucket, +/obj/effect/floor_decal/corner/purple{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/horizon/service/custodial) "xTF" = ( /obj/structure/machinery/appliance/cooker/oven, /turf/simulated/floor/tiled/dark/full, @@ -185662,6 +185684,12 @@ }, /turf/simulated/floor/carpet/rubber, /area/horizon/engineering/break_room) +"xTO" = ( +/obj/structure/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/skipjack) "xTT" = ( /obj/structure/table/standard, /obj/item/storage/box/fancy/vials, @@ -186008,6 +186036,13 @@ }, /turf/simulated/wall, /area/horizon/maintenance/deck_3/auxatmos) +"xWE" = ( +/obj/structure/closet/secure_closet/machinist, +/obj/effect/floor_decal/spline/plain/red{ + dir = 1 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/operations/machinist/surgicalbay) "xWF" = ( /obj/structure/disposalpipe/trunk{ dir = 8 @@ -186082,6 +186117,13 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/hangar/intrepid) +"xXx" = ( +/obj/structure/machinery/light/small, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/service/port) "xXA" = ( /obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, /turf/simulated/floor/tiled/dark/full, @@ -186322,6 +186364,20 @@ "xZn" = ( /turf/simulated/wall/r_wall, /area/horizon/maintenance/deck_1/main/starboard) +"xZo" = ( +/obj/structure/table/reinforced/steel, +/obj/item/eftpos{ + eftpos_name = "Executive Officers EFTPOS scanner"; + pixel_x = -6; + pixel_y = 3 + }, +/obj/item/quikpay{ + pixel_y = 4; + shop_name = "Executive Officers Quikpay"; + pixel_x = 6 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/command/heads/xo_desk) "xZp" = ( /obj/effect/floor_decal/corner/mauve{ dir = 6 @@ -186388,16 +186444,6 @@ /obj/structure/lattice/catwalk/indoor, /turf/simulated/floor, /area/horizon/maintenance/deck_3/auxatmos) -"xZD" = ( -/obj/structure/sign/staff_only{ - pixel_x = -32 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/random/loot, -/turf/simulated/floor, -/area/horizon/maintenance/deck_3/aft/holodeck) "xZE" = ( /turf/simulated/wall, /area/horizon/service/library) @@ -186663,6 +186709,11 @@ }, /turf/simulated/floor/tiled, /area/horizon/command/bridge/upperdeck) +"ybM" = ( +/obj/structure/machinery/optable/robotics, +/obj/effect/floor_decal/spline/plain/red, +/turf/simulated/floor/carpet/rubber, +/area/horizon/operations/machinist/surgicalbay) "ybO" = ( /obj/structure/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 @@ -186691,6 +186742,16 @@ icon_state = "wood" }, /area/centcom/legion/hangar5) +"ybS" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/structure/machinery/light, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/starboard) "ybU" = ( /obj/structure/cable{ icon_state = "4-8" @@ -186854,6 +186915,16 @@ /obj/structure/machinery/alarm/north, /turf/simulated/floor/tiled, /area/horizon/maintenance/deck_3/aft/holodeck) +"ydq" = ( +/obj/effect/floor_decal/corner_wide/brown/diagonal, +/obj/effect/floor_decal/spline/plain/purple{ + dir = 10 + }, +/obj/structure/bed/stool/chair/office/dark{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/operations/machinist) "yds" = ( /obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ id = "consularA" @@ -186938,6 +187009,22 @@ }, /turf/simulated/floor/plating, /area/horizon/shuttle/intrepid/medical) +"ydR" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-c" + }, +/obj/structure/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_2/starboard) "ydW" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 5 @@ -187698,20 +187785,6 @@ icon_state = "wood" }, /area/centcom/legion) -"yis" = ( -/obj/structure/extinguisher_cabinet/south, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/primary/deck_2/starboard) "yix" = ( /obj/structure/platform/ledge{ dir = 4 @@ -216293,7 +216366,7 @@ lsy nSV wtv tJJ -nZV +rsi dhk qgT qgT @@ -217591,7 +217664,7 @@ ieG oXm lKo chG -fIC +xTD dYV kYZ lKo @@ -217606,7 +217679,7 @@ emx lQd rPS bzy -sby +thG lsX wYB uiC @@ -217863,7 +217936,7 @@ spg krA dtp nTH -sby +thG lsX lNz piQ @@ -218598,8 +218671,8 @@ qLr qLr qLr jSo -pWR -olI +pyv +iAZ qOp kGY iGG @@ -218856,7 +218929,7 @@ qLr qLr jSo dJk -uBL +veR rMA iON iGG @@ -219397,7 +219470,7 @@ lKo vIR nUL hGt -rce +tUO dnK vnL klH @@ -219654,7 +219727,7 @@ lKo eXT nUL hGt -eXA +rbE ccN fAg oAd @@ -222488,7 +222561,7 @@ qxp mUG bUn hTy -rOb +tPy siD kBT nFD @@ -224316,7 +224389,7 @@ iaE sDT iaE hPp -qwV +fPG oWM ugX pNi @@ -225344,7 +225417,7 @@ aeQ nwZ maS kSL -qwV +fPG xGf iUl pNi @@ -227638,7 +227711,7 @@ eFV osZ weq ktX -xKJ +pnu tZL aJX pnF @@ -229404,9 +229477,9 @@ swu tDE iMr aus -gFE -gMK -rGE +uFx +egF +noc fkf vLB brl @@ -268251,7 +268324,7 @@ sDE fQP aef urY -sjN +pmx fjk giR eSV @@ -268508,7 +268581,7 @@ qjG fjk qjh lHQ -sjN +pmx fjk giR eSV @@ -271565,7 +271638,7 @@ eSV eSV rZc kiT -phM +rCE deU gog fJX @@ -272336,7 +272409,7 @@ eSV rZc blA fJX -qla +lnK esh cfP fJX @@ -272860,7 +272933,7 @@ dFA ufx fJX jRb -nwe +ras vcp pfo vYo @@ -273909,7 +273982,7 @@ nGY isP urI vSP -nCz +wRc nGY cHA gxN @@ -274943,7 +275016,7 @@ aJm gjS aJm wiG -tdl +lzw reJ wOV wiG @@ -276959,7 +277032,7 @@ vlx fkO hFZ odU -mIr +iaU mVD ggv ggv @@ -277730,7 +277803,7 @@ mHs mHs rDU eHx -uKh +cnh fov mIH eNf @@ -278534,8 +278607,8 @@ sfz nsU pQB xvf -bTs -gIg +sik +ibu roH tHj ipt @@ -278803,7 +278876,7 @@ nqF nqF nqF nqF -eIu +unO dlH gZU uYQ @@ -279052,14 +279125,14 @@ oJw fbC nqF mAZ -mAZ +nTv nqF nqF -jJA -eWQ -dVT -rBN -nqF +oKS +dbI +mkA +adA +qGs lhz nWP bSS @@ -279306,17 +279379,17 @@ qAo oCl xIq gRc -xwJ -nqF -dKx -dKx -pum -xwX -uao -uao -aGE -mKo +iEt nqF +wmS +lXL +jsy +wxu +wuM +iIZ +ydq +fQg +qGs lhz lqA bSS @@ -279562,20 +279635,20 @@ uHI jwo aEz cYV -aCF -yis -nqF -aWi -qDL -eHy -kBP -kuq -kuq -bum -qOR -nqF +xJc +cdz +wgL +rwb +eYu +cEs +mEe +bCk +wAd +tnf +sWu +qGs tvb -tad +gGF lDl uVj fxS @@ -279819,21 +279892,21 @@ poB tlU poB mjk -qRU -kIy -nqF -sGP -bGv -bQQ -hlO -hKc -nBa -xwG -nqF -nqF -oOJ -oOJ -bSS +hJx +gWF +uVJ +hiA +wYc +ktM +dGW +uzx +aFL +lCb +lCb +svy +svy +svy +vgT rdq bSS eSV @@ -280076,21 +280149,21 @@ quh jwo quh gIy -maF -kmi -nqF -eCc -sZN -vkm -ezv -rJH -uqq -mSj -wPm -vhY -cGO -vyz -lZa +hoz +utB +mLN +vCS +rWV +fFw +dxm +pUm +fNr +lCb +umK +mHW +rRG +qEI +vgT uYQ eWI eSV @@ -280333,21 +280406,21 @@ pUc pUc olD gEF -fYV -kAN -hHf -lwO -jyY -ufT -ioY -fFe -ade -luo -fKP -rmc -rLs -qNi -deD +dDx +cqc +sPY +nCc +lNS +pec +gFN +cDN +byH +lCb +tph +ihG +eQj +xWE +aGV uYQ eSV eSV @@ -280591,20 +280664,20 @@ etV geu gEF dRY -fpr -tLU -vvB -bwx -deA -gPP -hop -cTs -hxa -lKQ -ibT -kVi -tPq -aFW +ghW +wgL +vIy +siu +sQz +nca +rcS +cHd +lCb +thx +jZR +meO +qhE +rio uYQ eSV eSV @@ -280847,21 +280920,21 @@ sKL etV hDr gEF -rLa -rPk -gvg -dDO -iiE -aYT -kYJ -duA -uRN -uGX -bSH -uXM -uXM -sBt -lZa +dRY +pSz +nqF +kaZ +leG +tHU +jVm +qlp +dMH +lCb +ybM +ihG +wJd +mTD +aGV uYQ eSV eSV @@ -281102,22 +281175,22 @@ rwn gMm bSU iqJ -oWS -rHW -lAv -aeh -jNe -jlJ -ntJ -iah -iLM -dzP -wfB -svy -svy +jUw +xoV +eUC +pSz +nqF +hGs +ffH +ciJ +wNZ +jZy +gKO lCb -lCb -svy +mYY +ihG +nci +ilD vgT uYQ eSV @@ -281359,23 +281432,23 @@ dnG hfm hfi hMH -lcu -tvJ -hre -cdM -hHf -owZ -owZ -sCF -iOK -dhb -rOm +skJ +olq +cQD +ybS +nqF +oEi +hzX +gQc +qNm +xmh +ckm svy -pwq -ldd -rCh -mUm -vgT +vNJ +elz +xBw +liV +aGV uYQ eSV eSV @@ -281616,22 +281689,22 @@ dYk knC sst etV -tJu -gEF -uUv -xcR +vUZ +uZW +rSe +rfK nqF -nTv -wor +hnD nqF -bvR -qKE -dox +jDf +egN +cTs +sWM svy -pfM -oIQ -wMg -vrd +orJ +bUM +ssk +ssk aGV uYQ eSV @@ -281874,21 +281947,21 @@ rft rft rft rft -lYJ -uUv -uIn -oXj -jBE -qsB +fcf +ydR +nuC +mBE +bbt bdK -vpe -btw -rNw -kLn -rhb -uJr -pmo -wvm +pIn +wWi +tlw +wYF +gij +mwp +mSD +hXh +gOo aGV uYQ eSV @@ -282134,18 +282207,18 @@ rrr gEF rcF ahg -rBj -aGB +kuZ cNo -jtm -oQc -omS -uca +tmi +ioi +kjE +tUG +ssx svy -qpW -qPl -cPR -jYf +kBz +hIQ +xbb +nnm vgT sDq czM @@ -282399,7 +282472,7 @@ tQJ tQJ dlQ dlQ -bjO +gHO dlQ dlQ kdf @@ -282656,7 +282729,7 @@ cMY bhL nXt xli -qKJ +dzt uhb uSI gba @@ -282910,10 +282983,10 @@ diV why gMj nyl -gRp -aeV -aeV -ozL +tFr +kxR +kxR +bNA xdH kJk gba @@ -283165,12 +283238,12 @@ khw yjm uDL uDL -jAT +cgB fji bhL tFB jWh -ewp +rel xEM mgT gba @@ -283427,7 +283500,7 @@ tNA bhL oUP oUP -vvx +mkY oUP oUP gba @@ -284449,7 +284522,7 @@ tID lZh qch ivk -vKO +iow tXO qch qAc @@ -284705,7 +284778,7 @@ tvJ hQx khw gIb -cnt +aXC hnr sgx qch @@ -284724,7 +284797,7 @@ qWG ogt giv ezA -jia +pUp gZL dhe dhe @@ -288309,7 +288382,7 @@ eFY qJX cTw xZE -cSK +iQW oCW wcO nlo @@ -289351,7 +289424,7 @@ idW iCn aJF qrn -sbW +uoj wxI kom xaO @@ -289800,7 +289873,7 @@ grg vkw vkw vkw -wFf +nIC ftR geR qqC @@ -289852,7 +289925,7 @@ aoE aoE aoE aoE -ods +fPn yfn obQ nBM @@ -290100,7 +290173,7 @@ cMN gAF rWj wiu -oca +vDF aoE yeV wrq @@ -290113,7 +290186,7 @@ aoE jaF leN nBM -cAk +npY ixh aKc orA @@ -290357,7 +290430,7 @@ voA uKZ wZr tOG -lNv +pZx aoE eYO trW @@ -290368,7 +290441,7 @@ kUt btg aoE yfn -rjk +xXx nBM whd xJw @@ -291091,7 +291164,7 @@ jDp xtW tBy weh -kLv +aZG eJb vAn xml @@ -291597,7 +291670,7 @@ tZw aRg hoq ovm -lva +hZh uOD fGP eqG @@ -291854,7 +291927,7 @@ btm adW sPO ovm -azM +sKw dzv jOO ufs @@ -291893,7 +291966,7 @@ eIg eZH usa mXT -jTa +iTc uac mvS pNh @@ -294974,7 +295047,7 @@ hKx hKx hKx eDf -opM +dVP hCQ hCQ hCQ @@ -295231,7 +295304,7 @@ gwn jCF mFY xZG -opM +dVP rKb trL uJn @@ -298331,7 +298404,7 @@ rbh iLW gzF gzF -sEk +qFW fyA fFV ubK @@ -299574,8 +299647,8 @@ qfo eVT eUP vvb -hIw -bdC +tnU +hUP glr fFR sLh @@ -300879,7 +300952,7 @@ uLp uwY khg kaT -wXR +mZG uwY umd eDy @@ -304232,7 +304305,7 @@ aSk aSk aSk kIR -mVg +sOc piA bWZ eSV @@ -347128,7 +347201,7 @@ pJG pTo rkE qyC -ljm +bEj eai rcx vWP @@ -347649,7 +347722,7 @@ mfk aoC aoC nty -xZD +aLO eHY fLc uho @@ -348151,7 +348224,7 @@ dXp fLk aNW gqA -rZy +gLn wPw wPw wPw @@ -348454,12 +348527,12 @@ lwL lwL beS mXo -qEB -tEo -cBS -sDV -oGJ -qEB +bOF +tGg +btM +uhj +uNB +bOF xDY rKQ vUX @@ -348711,15 +348784,15 @@ dca lmW lWf dHF -vcr -avP -hMw -qTN -jco -vcr -vpp -dFD -pfj +ovB +sTk +clg +grD +cvw +ovB +vbV +daS +kAG fLf tnt fLf @@ -348922,7 +348995,7 @@ kwB fLk riD cha -lZn +enA wPw shX lCS @@ -348968,14 +349041,14 @@ crD lch cvV rWS -vcr -qfL -pBY -luM -sqw -rCD -xKW -tcN +ovB +cbw +oiP +hsB +tmD +aRj +wgy +alr yeP xtz suS @@ -349225,13 +349298,13 @@ crD mVF kvX cOY -vcr -hWL -vFa -pnt -dCq -tgV -xKW +ovB +wql +qEH +dxT +ngg +tco +wgy kxt nQb nQb @@ -349482,14 +349555,14 @@ msH vJK xEj tJd -vcr -dIR -qFo -aWJ -lqa -uwi -uyO -jZb +ovB +sgz +kYG +nyU +mSm +bcP +srM +uZj aeL flc iQu @@ -349739,13 +349812,13 @@ ffl tnj pIb tMK -vcr -waN -anO -aEh -xnC -uFM -iZz +ovB +uAL +hKt +szR +fCP +ijx +cRp xDc rnO dNR @@ -349754,7 +349827,7 @@ fsc sCa epv fYU -lZB +reE qlP uYQ wWR @@ -349996,14 +350069,14 @@ beT azE ouc pvW -vcr -nWF -xIW -hrw -ejW -vcr -vND -ivN +ovB +wnY +lYC +twf +tJS +ovB +cga +qeZ fvW wso gjA @@ -350253,14 +350326,14 @@ sBx iRZ iRZ qUt -vcr -viF -fqm -xSi -vcr -vcr +ovB +jKX +oip +kxU +ovB +ovB hiO -xyY +rNC hiO dXa kYq @@ -350510,14 +350583,14 @@ buH oFp jPx vFx -qHd -iXP -tTg -cIu -fym -qHd +jXm +kPh +xZo +cAx +ksI +jXm vQu -bas +fUX wnq qTX qTX @@ -350766,15 +350839,15 @@ tok iIj poi dbR -ebD -qHd -nDy -qcz -vUn -naE -xgk -phB -blQ +mgO +jXm +kzR +gfL +ong +ubj +uqc +iUC +uKB sOl sOl nmM @@ -351024,12 +351097,12 @@ wdr oSw kxX gYo -qho -spu -oAR -lQw -eoU -qHd +eXv +psh +swV +tPk +uet +jXm iFv lWt ceu @@ -351281,12 +351354,12 @@ qZU ukx brx dGi -asV -gvC -tiQ -mSf -ljS -fyv +jeR +nVX +nKk +iNl +xIe +uxB jll sJe mCu @@ -351538,12 +351611,12 @@ izA khS wJp rUH -qHd -qHd -tND -pMO -dNB -jaP +jXm +jXm +hWd +qwG +tyM +wjx tZI sJe vVz @@ -352007,7 +352080,7 @@ hlT dUz lSW dEo -nhP +iID nLb nxi cNU @@ -352769,7 +352842,7 @@ hJn yjK teA bMq -dyG +lQC dYd tvB xlj @@ -353283,7 +353356,7 @@ ydd fyf rDv bMq -dyG +lQC tet sSI xrw @@ -353540,7 +353613,7 @@ ydd fyf aMe bMq -jxi +sUz tet pfz xrw @@ -361282,8 +361355,8 @@ dlu hOF scF fSx -poR -fmK +xQf +lrk oGB vVZ kUM @@ -403262,7 +403335,7 @@ wkz nMb qAF jwl -nQt +bdY qAF tEx tEx @@ -434699,7 +434772,7 @@ oeZ bdm kHr aTz -kFl +psn lDP wPI bdm @@ -443590,7 +443663,7 @@ tFy kZZ iUH rgs -nCx +jCg nHE iXG nBU @@ -445131,7 +445204,7 @@ jWU ogA vKY nAf -fKv +xTO nHE pym eSV