diff --git a/code/__HELPERS/areas.dm b/code/__HELPERS/areas.dm index 18edf8f24b0..5910c98e0a3 100644 --- a/code/__HELPERS/areas.dm +++ b/code/__HELPERS/areas.dm @@ -120,6 +120,6 @@ /// Returns a sorted version of GLOB.areas, by name /proc/get_sorted_areas() - if(!GLOB.sortedAreas) + if(!GLOB.sortedAreas || (length(GLOB.sortedAreas) < length(GLOB.areas))) GLOB.sortedAreas = sortTim(GLOB.areas.Copy(), /proc/cmp_name_asc) return GLOB.sortedAreas diff --git a/code/unit_tests/map_tests.dm b/code/unit_tests/map_tests.dm index 178c3768f96..e9d5e25747e 100644 --- a/code/unit_tests/map_tests.dm +++ b/code/unit_tests/map_tests.dm @@ -28,8 +28,6 @@ if (!SSatlas.current_map) return - // This is formatted strangely because it fails the indentation test if it's formatted properly. - // ¯\_(ツ)_/¯ var/list/exempt_areas = typecacheof(SSatlas.current_map.ut_environ_exempt_areas) var/list/exempt_from_atmos = typecacheof(SSatlas.current_map.ut_atmos_exempt_areas) var/list/exempt_from_apc = typecacheof(SSatlas.current_map.ut_apc_exempt_areas) @@ -450,43 +448,50 @@ return test_status -// At present, only fire alarms have NSEW as immediate children, whereas APCs and Air Alarms also have them as sub-children. -// In the future, areas should have additional vars to populate APC data automatically, allowing them to have directional -// immediate children too for mapping testing. -/datum/unit_test/map_test/no_panel_dir_var_edits - name = "MAP: Check for Fire Alarm dir var edits" +// Checks mapped wall-mounted objects with direction presets. +/datum/unit_test/map_test/no_directional_subtype_dir_var_edits + name = "MAP: Check for directional subtype dir var edits" + // Right now, this only runs on the Horizon. ALL NEW MAPS should opt-in to this unit test. + // Old maps are REQUIRED to be opted-in when they're touched for the first time since this unit test was added. + map_path = list("sccv_horizon") -/datum/unit_test/map_test/no_panel_dir_var_edits/start_test() +/datum/unit_test/map_test/no_directional_subtype_dir_var_edits/start_test() var/test_status = UNIT_TEST_PASSED var/checks = 0 var/failed_checks = 0 - var/firealarm_increment - var/turf/T + var/list/checked_types = typecacheof(list( + /obj/structure/machinery/alarm, + /obj/structure/machinery/power/apc, + /obj/structure/machinery/firealarm, + // save this for nbt2. fuck me. i don't have the strength for this rn. no one does. + // /obj/structure/machinery/light_switch, + /obj/structure/extinguisher_cabinet, + /obj/structure/fireaxecabinet, + /obj/structure/closet/walllocker, + /obj/item/radio/intercom, + )) - for(var/obj/structure/machinery/firealarm/F in world) - T = get_turf(F) - firealarm_increment = 0 - if(istype(F, /obj/structure/machinery/firealarm/north)) - if(F.dir != NORTH) - firealarm_increment++ - if(istype(F, /obj/structure/machinery/firealarm/south)) - if(F.dir != SOUTH) - firealarm_increment++ - if(istype(F, /obj/structure/machinery/firealarm/east)) - if(F.dir != EAST) - firealarm_increment++ - if(istype(F, /obj/structure/machinery/firealarm/west)) - if(F.dir != WEST) - firealarm_increment++ + for(var/obj/O in world) + if(!is_type_in_typecache(O, checked_types)) + continue + + var/turf/object_turf = O.loc + if(istype(object_turf)) + if(!is_station_level(object_turf.z)) + continue + + var/obj/obj_type = O.type + var/expected_dir = initial(obj_type.dir) checks++ - if(firealarm_increment > 1) + + if(O.dir != expected_dir) failed_checks++ - TEST_FAIL("Manually var edited [F] at ([F.x],[F.y],[F.z]) in [T.loc].") + TEST_FAIL("Mapped [O] ([O.type]) at ([O.x],[O.y],[O.z]) in [get_area(O)] has dir [dir2text(O.dir)], but its type's initial dir is [dir2text(expected_dir)]. Use the matching directional subtype instead of editing dir.") if(failed_checks) - TEST_FAIL("\[[failed_checks] / [checks]\] Some fire alarms had their dir var manually edited instead of using a preset variant. Please also check new APCs and air alarms in the area.") + TEST_FAIL("\[[failed_checks] / [checks]\] Checked objects had their dir var manually edited.") else - TEST_PASS("All \[[checks]\] fire alarms mapped properly.") + TEST_PASS("All \[[checks]\] checked objects are mapped with their initial dir values.") return test_status diff --git a/code/unit_tests/ss_test.dm b/code/unit_tests/ss_test.dm index f4a566593d1..495eb124318 100644 --- a/code/unit_tests/ss_test.dm +++ b/code/unit_tests/ss_test.dm @@ -165,7 +165,7 @@ SUBSYSTEM_DEF(unit_tests) TEST_GROUP_OPEN("[test.name]") - if (test.map_path && SSatlas.current_map && SSatlas.current_map.path != test.map_path) + if (length(test.map_path) && SSatlas.current_map && !(SSatlas.current_map.path in test.map_path)) test.pass(TEST_OUTPUT_GREEN("Check Disabled: This test is not allowed to run on this map."), __FILE__, __LINE__) TEST_GROUP_CLOSE("[test.name]") if (MC_TICK_CHECK) diff --git a/code/unit_tests/unit_test.dm b/code/unit_tests/unit_test.dm index 7b43a71833b..dc7b6f8b111 100644 --- a/code/unit_tests/unit_test.dm +++ b/code/unit_tests/unit_test.dm @@ -30,25 +30,29 @@ GLOBAL_VAR_INIT(unit_tests_failures, 0) GLOBAL_VAR_INIT(total_unit_tests, 0) -// We list these here so we can remove them from the for loop running this. -// Templates aren't intended to be ran but just serve as a way to create child objects of it with inheritable tests for quick test creation. - +/// We list these here so we can remove them from the for loop running this. +/// Templates aren't intended to be ran but just serve as a way to create child objects of it with inheritable tests for quick test creation. ABSTRACT_TYPE(/datum/unit_test) var/name = "template - should not be ran." - var/disabled = 0 // If we want to keep a unit test in the codebase but not run it for some reason. - var/async = 0 // If the check can be left to do it's own thing, you must define a check_result() proc if you use this. - var/reported = 0 // If it's reported a success or failure. Any tests that have not are assumed to be failures. - var/why_disabled = "No reason set." // If we disable a unit test we will display why so it reminds us to check back on it later. - var/map_path // This should be the same as the path var on /datum/map - The unit test will only run for that map + /// If we want to keep a unit test in the codebase but not run it for some reason. + var/disabled = 0 + /// If the check can be left to do its own thing, you must define a check_result() proc if you use this. + var/async = 0 + /// If it's reported a success or failure. Any tests that have not are assumed to be failures. + var/reported = 0 + /// If we disable a unit test we will display why so it reminds us to check back on it later. + var/why_disabled = "No reason set." + /// These should be the same as the path var on /datum/map - The unit test will only run for those maps + var/list/map_path - ///A list of strings, each of which represents a group which this UT belongs to, the UT pods will only run UTs that are in their list + /// A list of strings, each of which represents a group which this UT belongs to, the UT pods will only run UTs that are in their list var/list/groups = list() - ///The priority of the test, the larger it is the later it fires + /// The priority of the test, the larger it is the later it fires var/priority = 1000 -/* +/** * Log levels used to prettify correctly, only defined in this file (aka undef'd at the end) * Build unit test messages as per https://docs.github.com/en/actions/using-workflows/workflow-commands-for-github-actions, or for console output */ diff --git a/html/changelogs/Bat-SortedAreas.yml b/html/changelogs/Bat-SortedAreas.yml new file mode 100644 index 00000000000..3c3d3360ac4 --- /dev/null +++ b/html/changelogs/Bat-SortedAreas.yml @@ -0,0 +1,8 @@ +author: Batrachophrenoboocosmomachia +delete-after: True +changes: + - code_imp: "Updates map_path var for mapping unit tests to be a list instead of a var, allowing for opting-in of unit tests on by-map basis." + - code_imp: "Updates fire alarm directionality map test for (almost) all directional wall-mounted objects, with only sccv_horizon map currently opted-in." + - bugfix: "Adds extra safety for GLOB.SortedAreas having entries removed but not later re-generated." + - bugfix: "Fixes all the incorrectly mapped areas on the Horizon exposed by newly-run unit tests." + - imageadd: "Adds currently unused map_helper sprites for airlocks- prep for future work." diff --git a/icons/effects/map_effects.dmi b/icons/effects/map_effects.dmi index bb505b3cfd5..5a3ff46925b 100644 Binary files a/icons/effects/map_effects.dmi and b/icons/effects/map_effects.dmi differ diff --git a/maps/_common/mapsystem/map_unit.dm b/maps/_common/mapsystem/map_unit.dm index 3e219c7beeb..4970f51a2d8 100644 --- a/maps/_common/mapsystem/map_unit.dm +++ b/maps/_common/mapsystem/map_unit.dm @@ -1,6 +1,6 @@ /datum/map - var/list/ut_environ_exempt_areas = list(/area/space) - var/list/ut_apc_exempt_areas = list() - var/list/ut_atmos_exempt_areas = list() - var/list/ut_fire_exempt_areas = list() + var/list/ut_environ_exempt_areas = list(/area/space,/area/template_noop) + var/list/ut_apc_exempt_areas = list(/area/space,/area/template_noop) + var/list/ut_atmos_exempt_areas = list(/area/space,/area/template_noop) + var/list/ut_fire_exempt_areas = list(/area/space,/area/template_noop) var/list/excluded_test_types = list() diff --git a/maps/sccv_horizon/code/sccv_horizon_unittest.dm b/maps/sccv_horizon/code/sccv_horizon_unittest.dm index 09c445df3cb..0347c550b2e 100644 --- a/maps/sccv_horizon/code/sccv_horizon_unittest.dm +++ b/maps/sccv_horizon/code/sccv_horizon_unittest.dm @@ -10,38 +10,53 @@ /area/supply/dock, /area/turbolift, /area/mine, - /area/horizon/exterior + /area/horizon/exterior, + /area/template_noop, + /area/horizon/shuttle/escape_pod ) - ut_apc_exempt_areas = list() + ut_apc_exempt_areas = list( + // IF YOU ARE GOING TO ADD MORE EXEMPT AREAS, HAVE A GOOD REASON AND MOVE THIS MESSAGE DOWN A LINE. + ) ut_atmos_exempt_areas = list( - /area/horizon/maintenance, - /area/horizon/engineering/atmos/storage, - /area/horizon/rnd/server, - /area/horizon/tcommsat/chamber, - /area/horizon/command/bridge/aibunker, - /area/horizon/medical/cryo, - /area/horizon/medical/surgery/storage, - /area/horizon/ai, - /area/horizon/engineering/reactor/indra/smes, - /area/horizon/rnd/xenoarch/isolation_a, - /area/horizon/rnd/xenoarch/isolation_b, - /area/horizon/rnd/xenoarch/isolation_c + /area/horizon/maintenance, // It's the maints, mate + /area/horizon/engineering/atmos/storage, // Quasi-maints + /area/horizon/engineering/atmos/storage_maintenance, // Quasi-maints + /area/horizon/rnd/server, // Fancy local temp control + /area/horizon/tcommsat/chamber, // Fancy local temp control + /area/horizon/command/bridge/aibunker, // Fancy local temp control + /area/horizon/medical/cryo, // Quasi-maints + /area/horizon/medical/surgery/storage, // + /area/horizon/ai, // Fancy local temp control + /area/horizon/rnd/xenoarch/isolation_a, // Science bullshit + /area/horizon/rnd/xenoarch/isolation_b, // Science bullshit + /area/horizon/rnd/xenoarch/isolation_c, // Science bullshit + /area/horizon/shuttle/escape_pod, // You're dead anyway if something goes wrong + /area/horizon/operations/package_conveyors, // It's less maints+ and more maints- + /area/horizon/shuttle/canary // Where the fuck are you gonna put them + // IF YOU ARE GOING TO ADD MORE EXEMPT AREAS, HAVE A GOOD REASON AND MOVE THIS MESSAGE DOWN A LINE. ) ut_fire_exempt_areas = list( - /area/horizon/maintenance, - /area/horizon/command/bridge/aibunker, - /area/horizon/medical/cryo, - /area/horizon/crew/washroom/deck_3, - /area/horizon/rnd/xenoarch/isolation_a, - /area/horizon/rnd/xenoarch/isolation_b, - /area/horizon/rnd/xenoarch/isolation_c + /area/horizon/maintenance, // It's the maints, mate + /area/horizon/command/bridge/aibunker, // Design + /area/horizon/medical/cryo, // Quasi-maints + /area/horizon/engineering/atmos/storage, // Quasi-maints + /area/horizon/engineering/atmos/storage_maintenance, // Quasi-maints + /area/horizon/rnd/xenoarch/isolation_a, // Science bullshit + /area/horizon/rnd/xenoarch/isolation_b, // Science bullshit + /area/horizon/rnd/xenoarch/isolation_c, // Science bullshit + /area/horizon/shuttle/escape_pod, // You're dead anyway if something goes wrong + /area/horizon/operations/package_conveyors, // It's less maints+ and more maints- + /area/horizon/stairwell/engineering/deck_1, // Alarm on deck 2 + /area/horizon/stairwell/starboard/deck_1, // Alarm on deck 2 + /area/horizon/stairwell/starboard/deck_3 // Alarm on deck 2 + // IF YOU ARE GOING TO ADD MORE EXEMPT AREAS, HAVE A GOOD REASON AND MOVE THIS MESSAGE DOWN A LINE. ) /datum/unit_test/zas_area_test/sccv_horizon - map_path = "sccv_horizon" + map_path = list("sccv_horizon") /datum/unit_test/zas_area_test/sccv_horizon/storage name = "ZAS: Operations Bay" diff --git a/maps/sccv_horizon/sccv_horizon.dmm b/maps/sccv_horizon/sccv_horizon.dmm index bf4e68f1308..ffcdef2d219 100644 --- a/maps/sccv_horizon/sccv_horizon.dmm +++ b/maps/sccv_horizon/sccv_horizon.dmm @@ -15,23 +15,6 @@ /obj/structure/extinguisher_cabinet/east, /turf/simulated/floor/tiled, /area/horizon/security/investigations_hallway) -"aap" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/horizon/command/bridge/meeting_room) "aau" = ( /obj/structure/lattice/catwalk, /obj/structure/ladder/up{ @@ -2096,6 +2079,22 @@ 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" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/meeting_room) "alx" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 @@ -2348,15 +2347,6 @@ /obj/random/maintenance_junk_or_loot, /turf/simulated/floor/tiled/dark, /area/horizon/maintenance/deck_3/cafe) -"anp" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/service/mess_hall) "anu" = ( /obj/structure/sign/radiation{ pixel_x = -32 @@ -2427,12 +2417,6 @@ /obj/effect/decal/fake_object/light_source/invisible, /turf/simulated/floor/bluegrid, /area/tdome) -"anH" = ( -/obj/structure/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/horizon/service/mess_hall) "anN" = ( /obj/structure/lattice, /obj/effect/map_effect/perma_light/starlight, @@ -2648,19 +2632,6 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/research) -"apP" = ( -/obj/structure/railing/mapped, -/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" - }, -/turf/simulated/floor/plating, -/area/horizon/operations/machinist/surgicalbay) "aqb" = ( /obj/structure/table/steel, /obj/item/storage/toolbox/electrical{ @@ -2861,6 +2832,20 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/holodeck_control/beta) +"aru" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/machinery/light, +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/stairwell/engineering/deck_2) "arG" = ( /obj/structure/machinery/atmospherics/pipe/simple/visible/black{ dir = 4 @@ -4063,23 +4048,6 @@ "azU" = ( /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/horizon/medical/smoking) -"aAc" = ( -/obj/structure/machinery/alarm/west{ - dir = 1; - pixel_x = 0; - pixel_y = 20 - }, -/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 - }, -/turf/simulated/floor/plating, -/area/horizon/operations/machinist/surgicalbay) "aAe" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 @@ -4347,6 +4315,24 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/weapons/longbow) +"aBT" = ( +/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 = 8 + }, +/obj/structure/platform_stairs/full{ + dir = 4 + }, +/obj/structure/platform{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/mess_hall) "aBV" = ( /obj/structure/table/wood, /obj/item/flame/candle, @@ -5601,25 +5587,6 @@ /obj/effect/floor_decal/industrial/outline/grey, /turf/simulated/floor/tiled, /area/horizon/security/investigations_hallway) -"aKf" = ( -/obj/structure/table/stone/marble, -/obj/structure/machinery/chemical_dispenser/coffeemaster/full{ - pixel_y = 19 - }, -/obj/structure/machinery/controlhub/bar{ - pixel_x = -5; - pixel_y = -8 - }, -/obj/structure/machinery/light_switch/idris{ - dir = 10; - pixel_x = 10; - pixel_y = -1 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/service/bar) "aKh" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -6202,6 +6169,16 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/engineering/atmos/storage) +"aNR" = ( +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/obj/structure/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/machinery/firealarm/south, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/interrogation_1) "aNV" = ( /obj/structure/table/wood{ pixel_x = -4; @@ -6361,6 +6338,23 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/investigations_hallway) +"aOF" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/structure/table/wood, +/obj/item/reagent_containers/food/condiment/shaker/salt{ + pixel_y = 5; + pixel_x = 7 + }, +/obj/item/reagent_containers/food/condiment/shaker/peppermill{ + pixel_x = 2; + pixel_y = 5 + }, +/obj/item/flame/candle{ + pixel_x = -6; + pixel_y = 9 + }, +/turf/simulated/floor/lino/diamond, +/area/horizon/service/mess_hall) "aOH" = ( /obj/structure/table/wood/gamblingtable, /obj/structure/machinery/power/outlet{ @@ -6449,6 +6443,13 @@ /obj/structure/railing/mapped, /turf/simulated/floor/tiled, /area/horizon/operations/loading) +"aPb" = ( +/obj/structure/machinery/alarm/east, +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/mess_hall) "aPd" = ( /obj/random/dirt_75, /obj/effect/floor_decal/industrial/warning{ @@ -8478,21 +8479,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/maintenance/deck_1/operations/starboard/amidships) -"bdl" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/machinery/camera/network/service{ - c_tag = "Service - Mess Hall 3"; - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/service/mess_hall) "bdm" = ( /turf/simulated/floor/holofloor/grass{ desc = "Lush, mossy grass. A staple of Konyang."; @@ -8680,6 +8666,13 @@ }, /turf/unsimulated/floor, /area/antag/mercenary) +"beB" = ( +/obj/structure/bed/stool/chair/sofa/left/red{ + dir = 1 + }, +/obj/structure/machinery/firealarm/south, +/turf/simulated/floor/carpet/red, +/area/horizon/service/library) "beE" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/machinery/suit_cycler/mining/prepared, @@ -8825,23 +8818,6 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/break_room) -"bfx" = ( -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" - }, -/obj/structure/sink/kitchen{ - dir = 8; - name = "sink"; - pixel_x = 21 - }, -/obj/structure/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/service/bar) "bfB" = ( /obj/structure/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 @@ -9139,27 +9115,6 @@ /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, /area/horizon/hangar/auxiliary) -"bho" = ( -/obj/structure/table/stone/marble, -/obj/item/reagent_containers/glass/bottle/syrup/chocolate{ - pixel_x = -8; - pixel_y = 13 - }, -/obj/item/reagent_containers/glass/bottle/syrup/caramel{ - pixel_x = -2; - pixel_y = 13 - }, -/obj/item/reagent_containers/glass/bottle/syrup/pumpkin{ - pixel_x = 4; - pixel_y = 13 - }, -/obj/item/reagent_containers/glass/bottle/syrup/vanilla{ - pixel_x = 10; - pixel_y = 13 - }, -/obj/item/radio/intercom/north, -/turf/simulated/floor/lino/diamond, -/area/horizon/service/bar) "bhs" = ( /obj/structure/undies_wardrobe, /obj/effect/floor_decal/industrial/outline/yellow, @@ -9203,21 +9158,6 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"bhy" = ( -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/obj/structure/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/machinery/camera/network/security{ - c_tag = "Security - Interrogation B"; - name = "interrogation"; - network = list("Interrogation"); - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/security/interrogation_1) "bhz" = ( /obj/effect/floor_decal/corner/yellow/full{ dir = 1 @@ -9719,20 +9659,6 @@ }, /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/horizon/rnd/test_range) -"bjK" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/reagent_dispensers/cookingoil, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/maintenance/deck_2/wing/starboard) "bjL" = ( /obj/structure/shuttle_part/ert{ icon_state = "4,0"; @@ -9740,12 +9666,25 @@ }, /turf/unsimulated/floor/plating, /area/shuttle/specops) -"bka" = ( -/obj/effect/floor_decal/industrial/hatch_door/service{ - dir = 8 +"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/service/mess_hall) +/area/horizon/maintenance/deck_2/service/starboard) "bkd" = ( /obj/structure/machinery/door/firedoor{ req_one_access = list(24,11,67,73); @@ -9801,16 +9740,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/rnd/xenobiology/xenoflora) -"bkx" = ( -/obj/structure/bed/stool/chair{ - name = "uncomfortable chair"; - dir = 8 - }, -/obj/effect/floor_decal/corner/red/full{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/security/interrogation_2) "bkD" = ( /obj/structure/window/reinforced/crescent{ dir = 8 @@ -10963,12 +10892,6 @@ /obj/item/reagent_containers/inhaler/pneumalin, /turf/simulated/floor/tiled/dark, /area/horizon/shuttle/mining) -"brW" = ( -/obj/structure/machinery/ammunition_loader/francisca{ - weapon_id = "Francisca Rotary Gun" - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/shuttle/canary) "brY" = ( /obj/structure/machinery/light{ dir = 1 @@ -11089,6 +11012,21 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/wing/starboard) +"btc" = ( +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/machinery/camera/network/service{ + c_tag = "Service - Mess Hall 3"; + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/mess_hall) "btg" = ( /obj/item/storage/secure/safe{ pixel_y = -20 @@ -11140,6 +11078,24 @@ }, /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, @@ -11462,6 +11418,25 @@ /obj/structure/machinery/alarm/west, /turf/simulated/floor/tiled/dark/full, /area/horizon/ai/upload) +"bvN" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/machinery/firealarm/south, +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/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 @@ -11876,6 +11851,17 @@ "byN" = ( /turf/simulated/wall/r_wall, /area/horizon/stairwell/engineering/deck_1) +"byO" = ( +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 1 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/closet/emcloset/communal, +/obj/effect/floor_decal/industrial/outline/emergency_closet, +/turf/simulated/floor/tiled, +/area/horizon/security/brig) "byQ" = ( /obj/structure/machinery/door/blast/shutters{ dir = 2; @@ -12496,16 +12482,6 @@ "bDu" = ( /turf/unsimulated/floor, /area/centcom/ferry) -"bDv" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/horizon/service/mess_hall) "bDz" = ( /obj/effect/floor_decal/industrial/warning/full, /obj/structure/machinery/porta_turret/crescent, @@ -12657,6 +12633,13 @@ /obj/effect/floor_decal/industrial/hatch_door/yellow, /turf/simulated/floor/tiled/full, /area/horizon/rnd/eva) +"bEE" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/item/hullbeacon/red, +/turf/simulated/floor/reinforced/airless, +/area/horizon/exterior) "bEG" = ( /obj/structure/machinery/door/firedoor, /obj/effect/floor_decal/industrial/hatch_door/yellow{ @@ -12746,6 +12729,21 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/service/port) +"bFx" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/horizon/service/bar) "bFC" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 6 @@ -13561,15 +13559,6 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/rnd/hallway) -"bMe" = ( -/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, -/turf/simulated/floor/tiled, -/area/horizon/operations/machinist) "bMf" = ( /turf/simulated/floor/tiled/ramp/bottom{ dir = 8 @@ -13765,16 +13754,6 @@ }, /turf/simulated/floor/plating, /area/horizon/engineering/atmos/air) -"bNx" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/horizon/service/mess_hall) "bNz" = ( /obj/structure/railing/mapped, /obj/structure/sign/greencross/small{ @@ -14354,6 +14333,13 @@ }, /turf/simulated/floor/carpet/rubber, /area/horizon/tcommsat/entrance) +"bRc" = ( +/obj/structure/table/wood, +/obj/structure/machinery/recharger{ + pixel_y = 3 + }, +/turf/simulated/floor/lino/diamond, +/area/horizon/service/mess_hall) "bRd" = ( /turf/simulated/wall/shuttle/unique/tcfl{ icon_state = "2,1" @@ -14438,18 +14424,6 @@ }, /turf/unsimulated/floor/dark, /area/antag/actor) -"bRM" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/structure/machinery/light/floor{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/service/mess_hall) "bRQ" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -14966,23 +14940,6 @@ /obj/random/loot, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/wing/port/far) -"bVa" = ( -/obj/structure/machinery/alarm/south, -/obj/item/reagent_containers/food/drinks/drinkingglass/newglass{ - pixel_x = 15; - pixel_y = 4 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/newglass{ - pixel_x = 6; - pixel_y = 4 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/newglass{ - pixel_x = -3; - pixel_y = 4 - }, -/obj/structure/table/fancy/black, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/service/mess_hall) "bVg" = ( /obj/structure/closet, /obj/random/loot, @@ -15004,6 +14961,14 @@ }, /turf/simulated/floor/reinforced, /area/shuttle/mercenary) +"bVn" = ( +/obj/structure/table/rack, +/obj/random/melee, +/obj/item/stack/material/steel/full, +/obj/item/crowbar/rescue_axe/tactical, +/obj/item/crowbar/rescue_axe/tactical, +/turf/simulated/floor/plating, +/area/shuttle/skipjack) "bVq" = ( /obj/effect/floor_decal/corner/mauve{ dir = 6 @@ -15086,11 +15051,6 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor, /area/horizon/crew/resdeck/living_quarters_lift) -"bVO" = ( -/obj/effect/floor_decal/industrial/hatch/firefighting_closet, -/obj/structure/closet/firecloset/full, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/service/mess_hall) "bVS" = ( /obj/effect/floor_decal/corner/dark_green/full{ dir = 8 @@ -15327,14 +15287,6 @@ /obj/structure/flora/ausbushes/sparsegrass, /turf/simulated/floor/grass/no_edge, /area/centcom/bar) -"bXk" = ( -/obj/structure/machinery/disposal, -/obj/effect/floor_decal/industrial/outline/service, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/service/mess_hall) "bXm" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 5 @@ -15406,24 +15358,6 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/wing/starboard/far) -"bXD" = ( -/obj/structure/platform_deco{ - dir = 1 - }, -/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 = 8 - }, -/obj/effect/floor_decal/spline/plain/green{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/service/mess_hall) "bXG" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 5 @@ -15626,19 +15560,6 @@ /obj/effect/decal/fake_object/light_source/invisible, /turf/simulated/floor, /area/tdome) -"bZv" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch/emergency_closet, -/obj/structure/closet/emcloset, -/obj/item/storage/toolbox/emergency, -/obj/item/storage/bag/inflatable/emergency, -/obj/structure/machinery/ai_status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/service/mess_hall) "bZy" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 5 @@ -15882,43 +15803,15 @@ }, /turf/simulated/floor/carpet, /area/horizon/command/heads/xo) -"cby" = ( -/obj/structure/platform{ - dir = 8 +"cbx" = ( +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 }, -/obj/structure/table/steel, -/obj/effect/floor_decal/spline/plain/brown{ - dir = 8 +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 }, -/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) +/turf/simulated/floor/tiled/dark, +/area/horizon/service/bar) "cbz" = ( /obj/structure/machinery/keycard_auth{ pixel_x = -5; @@ -16573,6 +16466,20 @@ }, /turf/simulated/floor/tiled/white, /area/centcom/shared_dream) +"cga" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/structure/machinery/status_display{ + pixel_y = 32 + }, +/obj/structure/machinery/camera/network/command{ + c_tag = "Bridge - Conference room"; + dir = 8 + }, +/obj/structure/machinery/light_switch/east, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/meeting_room) "cgc" = ( /obj/structure/railing/mapped{ dir = 4 @@ -17137,6 +17044,17 @@ }, /turf/unsimulated/floor, /area/centcom/holding) +"cjP" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/machinery/light/small/floor, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/horizon/service/mess_hall) "cjU" = ( /obj/effect/floor_decal/corner/dark_blue/full{ dir = 1 @@ -17355,6 +17273,28 @@ /obj/structure/lattice/catwalk/indoor, /turf/simulated/floor/plating, /area/horizon/maintenance/substation/operations) +"cmf" = ( +/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/aux{ + dir = 9 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 9 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 9 + }, +/obj/structure/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/stairwell/engineering/deck_1) "cmj" = ( /obj/effect/floor_decal/corner/paleblue/full{ dir = 8 @@ -18013,29 +17953,6 @@ /obj/random/maintenance_junk_or_loot, /turf/simulated/floor/tiled/dark, /area/horizon/maintenance/deck_3/cafe) -"cra" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/obj/item/radio/intercom/north, -/obj/structure/machinery/power/outlet{ - pixel_y = 3 - }, -/obj/item/flame/candle{ - pixel_x = 9; - pixel_y = 2 - }, -/obj/item/reagent_containers/food/condiment/shaker/peppermill{ - pixel_x = 2; - pixel_y = 12 - }, -/obj/item/reagent_containers/food/condiment/shaker/salt{ - pixel_y = 12; - pixel_x = -3 - }, -/obj/structure/table/wood/gamblingtable, -/turf/simulated/floor/wood, -/area/horizon/service/mess_hall) "crp" = ( /obj/effect/floor_decal/corner/yellow{ dir = 9 @@ -18620,16 +18537,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/operations/lobby) -"cuq" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/light_switch/east, -/turf/simulated/floor/wood, -/area/horizon/command/bridge/meeting_room) "cus" = ( /obj/effect/map_effect/window_spawner/full/reinforced/firedoor, /turf/simulated/floor/tiled/dark/full, @@ -19397,6 +19304,19 @@ /obj/item/stack/cable_coil/random, /turf/simulated/floor/carpet/rubber, /area/horizon/maintenance/deck_1/workshop) +"cyR" = ( +/obj/effect/floor_decal/corner/lime/diagonal, +/obj/effect/floor_decal/spline/plain/corner/green, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/crew/washroom/deck_2) +"cyU" = ( +/obj/effect/floor_decal/corner/lime/diagonal, +/obj/effect/floor_decal/spline/plain/green, +/turf/simulated/floor/tiled/white, +/area/horizon/crew/washroom/deck_2) "cyX" = ( /obj/structure/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -19533,6 +19453,13 @@ }, /turf/simulated/floor/bluegrid/server, /area/horizon/rnd/server) +"czM" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/item/hullbeacon/red, +/turf/simulated/floor/reinforced/airless, +/area/horizon/exterior) "czN" = ( /obj/effect/floor_decal/corner/white{ dir = 5 @@ -20620,21 +20547,6 @@ }, /turf/simulated/floor/wood, /area/horizon/command/heads/om) -"cIe" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/shuttle/intrepid/port_compartment) "cIf" = ( /obj/structure/machinery/newscaster/east{ pixel_y = 10 @@ -21317,6 +21229,14 @@ }, /turf/unsimulated/floor/marble, /area/antag/wizard) +"cMY" = ( +/obj/effect/floor_decal/corner/dark_green/full, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/firealarm/south, +/turf/simulated/floor/tiled, +/area/horizon/stairwell/starboard/deck_2) "cNb" = ( /obj/structure/machinery/computer/aiupload, /turf/unsimulated/floor{ @@ -21332,6 +21252,19 @@ }, /turf/simulated/floor/tiled/dark/full, /area/supply/dock) +"cNd" = ( +/obj/effect/floor_decal/spline/plain/black, +/obj/structure/bed/stool/chair/shuttle/double{ + pixel_x = -8; + dir = 1 + }, +/obj/structure/bed/stool/chair/shuttle/double{ + pixel_x = 8; + dir = 1 + }, +/obj/structure/machinery/firealarm/west, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/intrepid/main_compartment) "cNg" = ( /obj/effect/floor_decal/corner/green{ dir = 9 @@ -21463,19 +21396,6 @@ }, /turf/simulated/floor/marble/dark, /area/horizon/holodeck/source_trinary) -"cOc" = ( -/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 = "4-8" - }, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_2/service/starboard) "cOd" = ( /obj/effect/decal/cleanable/cobweb2, /obj/effect/decal/cleanable/spiderling_remains, @@ -21640,6 +21560,27 @@ /obj/structure/closet/cabinet, /turf/simulated/floor/wood, /area/shuttle/skipjack) +"cPK" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/obj/structure/machinery/disposal/small/west, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/hallway/primary/deck_2/fore) +"cPP" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/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 @@ -21748,24 +21689,6 @@ /obj/structure/machinery/door/firedoor, /turf/simulated/floor/plating, /area/horizon/stairwell/engineering/deck_1) -"cQp" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/spline/plain/green, -/obj/structure/machinery/light/small/floor, -/turf/simulated/floor/tiled/white, -/area/horizon/crew/washroom/deck_2) "cQs" = ( /obj/structure/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -21945,6 +21868,16 @@ }, /turf/simulated/floor/tiled, /area/horizon/hangar/auxiliary) +"cRp" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/machinery/light_switch{ + dir = 1; + pixel_y = 28 + }, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/meeting_room) "cRs" = ( /obj/effect/landmark/start{ name = "wizard" @@ -22277,6 +22210,24 @@ "cTs" = ( /turf/simulated/floor/tiled/dark/full, /area/horizon/operations/machinist) +"cTt" = ( +/obj/structure/platform_deco{ + dir = 1 + }, +/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 = 8 + }, +/obj/effect/floor_decal/spline/plain/green{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/mess_hall) "cTw" = ( /obj/structure/bed/stool/chair/sofa/red{ dir = 1 @@ -22395,6 +22346,22 @@ }, /turf/simulated/floor/tiled, /area/horizon/rnd/hallway) +"cTU" = ( +/obj/structure/machinery/turretid/stun{ + check_synth = 1; + name = "\improper AI Chamber Turret Control Console"; + pixel_x = -40; + pixel_y = 25 + }, +/obj/structure/machinery/firealarm/south, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/item/radio/intercom/north{ + name = "Common Channel" + }, +/turf/simulated/floor, +/area/horizon/ai/chamber) "cUa" = ( /obj/structure/machinery/door/firedoor{ dir = 4 @@ -23840,6 +23807,19 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/medical/surgery) +"ddN" = ( +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/effect/floor_decal/spline/plain/lime{ + dir = 1 + }, +/obj/structure/machinery/firealarm/south, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/chapel/office) "ddV" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 8 @@ -23956,6 +23936,13 @@ }, /turf/simulated/floor/tiled, /area/horizon/operations/loading) +"deR" = ( +/obj/structure/platform/cutout, +/obj/structure/platform_stairs/full/east_west_cap{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/mess_hall) "deT" = ( /obj/structure/machinery/atmospherics/unary/vent_pump/on, /obj/effect/floor_decal/corner/dark_blue{ @@ -24304,6 +24291,22 @@ /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 @@ -24676,6 +24679,25 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/horizon/stairwell/engineering/deck_1) +"diO" = ( +/obj/structure/ladder/up{ + pixel_y = 13 + }, +/obj/structure/cable{ + 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/railing/mapped{ + dir = 8 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/operations/starboard/far) "diT" = ( /obj/structure/disposalpipe/segment, /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, @@ -24872,6 +24894,23 @@ /obj/structure/machinery/firealarm/west, /turf/simulated/floor/tiled/white, /area/horizon/operations/break_room) +"djV" = ( +/obj/structure/machinery/alarm/south, +/obj/item/reagent_containers/food/drinks/drinkingglass/newglass{ + pixel_x = 15; + pixel_y = 4 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/newglass{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/newglass{ + pixel_x = -3; + pixel_y = 4 + }, +/obj/structure/table/fancy/black, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/mess_hall) "djX" = ( /obj/structure/machinery/computer/ship/sensors/terminal{ dir = 1 @@ -25252,15 +25291,6 @@ }, /turf/simulated/floor/plating, /area/horizon/engineering/bluespace_drive) -"dmn" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/service/mess_hall) "dmo" = ( /turf/simulated/wall/r_wall, /area/horizon/maintenance/deck_3/aft/port) @@ -25516,14 +25546,6 @@ }, /turf/simulated/floor/lino, /area/horizon/service/cafeteria) -"dnR" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/machinery/disposal/airless, -/obj/effect/floor_decal/industrial/outline/service, -/turf/simulated/floor/tiled/full, -/area/horizon/crew/washroom/deck_2) "dnV" = ( /obj/effect/floor_decal/corner_wide/yellow{ dir = 5 @@ -26120,6 +26142,19 @@ }, /turf/simulated/floor/exoplanet/grass/grove, /area/centcom/shared_dream) +"dqT" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch/emergency_closet, +/obj/structure/closet/emcloset, +/obj/item/storage/toolbox/emergency, +/obj/item/storage/bag/inflatable/emergency, +/obj/structure/machinery/ai_status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/mess_hall) "dqX" = ( /obj/structure/table/reinforced/steel, /obj/structure/window/reinforced/crescent, @@ -26614,6 +26649,21 @@ 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 @@ -26705,6 +26755,19 @@ /obj/structure/railing/mapped, /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_chapel) +"duU" = ( +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/machinery/door/firedoor/multi_tile, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/industrial/hatch_door/service{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/mess_hall) "duY" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/corner/dark_green{ @@ -26811,15 +26874,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/hallway/interior) -"dvx" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 9 - }, -/obj/structure/bed/stool/chair/padded/beige{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/horizon/service/mess_hall) "dvy" = ( /obj/structure/shuttle_part/tcfl{ icon_state = "2,0" @@ -27461,6 +27515,19 @@ }, /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, @@ -28223,28 +28290,6 @@ icon_state = "beach" }, /area/horizon/holodeck/source_moghes) -"dEk" = ( -/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/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 9 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 9 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 9 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/horizon/stairwell/engineering/deck_1) "dEo" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -28776,18 +28821,6 @@ "dHR" = ( /turf/simulated/floor/carpet, /area/horizon/repoffice/consular_one) -"dHT" = ( -/obj/effect/floor_decal/spline/plain/black, -/obj/structure/bed/stool/chair/shuttle/double{ - pixel_x = -8; - dir = 1 - }, -/obj/structure/bed/stool/chair/shuttle/double{ - pixel_x = 8; - dir = 1 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/shuttle/intrepid/main_compartment) "dHX" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 4 @@ -28815,16 +28848,6 @@ temperature = 278.15 }, /area/horizon/medical/morgue) -"dIk" = ( -/obj/structure/table/rack, -/obj/random/melee, -/obj/item/airbubble/syndie, -/obj/item/airbubble/syndie, -/obj/item/airbubble/syndie, -/obj/item/crowbar/rescue_axe/tactical, -/obj/item/crowbar/rescue_axe/tactical, -/turf/simulated/floor/plating, -/area/shuttle/skipjack) "dIl" = ( /obj/effect/floor_decal/corner/dark_blue/diagonal, /obj/structure/machinery/atmospherics/unary/vent_pump/aux{ @@ -28904,6 +28927,14 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/supply/dock) +"dIO" = ( +/obj/effect/floor_decal/corner/lime/diagonal, +/obj/effect/floor_decal/spline/plain/green{ + dir = 4 + }, +/obj/structure/machinery/alarm/south, +/turf/simulated/floor/tiled/white, +/area/horizon/crew/washroom/deck_2) "dIP" = ( /obj/effect/floor_decal/corner_wide/lime/diagonal, /turf/simulated/floor/tiled/white, @@ -29264,21 +29295,6 @@ /obj/structure/railing/mapped, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) -"dLu" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/horizon/service/mess_hall) "dLw" = ( /obj/structure/extinguisher_cabinet/north, /obj/effect/floor_decal/spline/plain/black{ @@ -29485,18 +29501,6 @@ /obj/structure/machinery/light, /turf/simulated/floor/tiled/dark/full/airless, /area/horizon/command/bridge/controlroom) -"dNh" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/shuttle/intrepid/port_compartment) "dNm" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 10 @@ -29621,6 +29625,27 @@ }, /turf/simulated/floor/wood, /area/horizon/rnd/hallway/secondary) +"dNQ" = ( +/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 = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/outline_straight/service{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/mess_hall) "dNR" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 @@ -30194,6 +30219,18 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/warden) +"dSo" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/obj/structure/sink/kitchen{ + dir = 8; + name = "sink"; + pixel_x = 19 + }, +/obj/effect/floor_decal/spline/plain/corner/green, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/mess_hall) "dSr" = ( /obj/structure/railing/mapped{ dir = 8 @@ -31915,6 +31952,32 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor, /area/horizon/maintenance/deck_3/aft/port) +"edH" = ( +/obj/item/reagent_containers/food/condiment/shaker/peppermill{ + pixel_x = 3; + pixel_y = 9 + }, +/obj/item/reagent_containers/food/condiment/shaker/salt{ + pixel_y = 9; + pixel_x = 8 + }, +/obj/structure/table/wood/gamblingtable, +/obj/structure/machinery/power/outlet{ + pixel_y = 3 + }, +/obj/item/flame/candle{ + pixel_x = -8; + pixel_y = 9 + }, +/obj/item/flame/candle{ + pixel_x = -4; + pixel_y = 9 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/turf/simulated/floor/wood, +/area/horizon/service/mess_hall) "edI" = ( /obj/structure/machinery/light{ dir = 4 @@ -32034,16 +32097,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/hallway) -"eew" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/crew/washroom/deck_2) "eez" = ( /obj/structure/coatrack{ pixel_x = -10; @@ -32092,6 +32145,21 @@ /obj/effect/step_trigger/thrower/shuttle/east, /turf/template_noop, /area/template_noop) +"eff" = ( +/obj/structure/machinery/computer/ship/targeting/cockpit{ + pixel_x = -25; + req_one_access = list(73,74) + }, +/obj/structure/bed/stool/chair/cockpit, +/obj/structure/machinery/computer/ship/sensors/cockpit/right{ + pixel_x = 25 + }, +/obj/item/rig/eva/pilot/equipped, +/obj/item/clothing/head/helmet/pilot/scc{ + pixel_y = 4 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/shuttle/canary) "efg" = ( /turf/simulated/wall/r_wall, /area/horizon/security/hallway) @@ -32520,36 +32588,6 @@ /obj/effect/floor_decal/corner/dark_blue/diagonal, /turf/simulated/floor/tiled/dark, /area/horizon/security/checkpoint) -"ehl" = ( -/obj/structure/machinery/light/colored/blue{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/structure/machinery/meter{ - name = "Fuel Reserve"; - pixel_x = -23; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/machinery/door/window/westleft{ - name = "EVA Suit Storage Rack Access" - }, -/obj/structure/table/rack, -/obj/item/rig/eva/pilot/equipped, -/obj/item/rig/eva/pilot/equipped{ - pixel_x = -5 - }, -/obj/structure/machinery/atmospherics/pipe/manifold4w/hidden/fuel, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/shuttle/canary) "ehr" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -32901,25 +32939,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/service/hydroponics/garden) -"ekl" = ( -/obj/structure/table/wood, -/obj/structure/machinery/power/outlet{ - pixel_y = 3 - }, -/obj/item/flame/candle{ - pixel_x = 7; - pixel_y = 11 - }, -/obj/random/pottedplant_small{ - pixel_x = 8; - pixel_y = -10 - }, -/obj/item/flame/candle{ - pixel_x = 3; - pixel_y = 11 - }, -/turf/simulated/floor/lino/diamond, -/area/horizon/service/mess_hall) "eko" = ( /obj/effect/landmark{ name = "raiderstart" @@ -33531,24 +33550,6 @@ /obj/effect/floor_decal/industrial/outline, /turf/simulated/floor/reinforced, /area/horizon/shuttle/canary) -"eol" = ( -/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/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" - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/machinist/surgicalbay) "eop" = ( /obj/structure/sign/radiation{ pixel_x = 32 @@ -33834,6 +33835,28 @@ }, /turf/simulated/floor/holofloor/tiled/dark, /area/horizon/holodeck/source_boxingcourt) +"eqw" = ( +/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/fuel{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 8 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 8 + }, +/obj/structure/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/stairwell/engineering/deck_1) "eqD" = ( /turf/simulated/open, /area/turbolift/primary/deck_3) @@ -34022,6 +34045,21 @@ }, /turf/unsimulated/floor/wood, /area/antag/raider) +"erE" = ( +/obj/structure/table/stone/marble, +/obj/item/storage/box/large/produce{ + pixel_x = -1; + pixel_y = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/item/reagent_containers/food/condiment/sugar{ + pixel_x = -5; + pixel_y = -3 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/kitchen) "erI" = ( /obj/effect/shuttle_landmark/escape_pod/transit/pod4, /turf/space/transit/east, @@ -34172,10 +34210,6 @@ /obj/structure/machinery/alarm/east, /turf/simulated/floor/tiled/white, /area/horizon/storage/eva/expedition) -"esH" = ( -/obj/structure/machinery/vending/dinnerware/bar, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/service/bar) "esK" = ( /obj/structure/lattice, /obj/structure/platform/ledge{ @@ -34227,6 +34261,14 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/rnd/xenobiology/xenoflora) +"etb" = ( +/obj/effect/floor_decal/corner/lime/diagonal, +/obj/effect/floor_decal/spline/plain/green, +/obj/structure/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/crew/washroom/deck_2) "etd" = ( /obj/structure/machinery/light_switch/south, /obj/effect/floor_decal/corner/brown{ @@ -35719,6 +35761,23 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/weapons/grauwolf) +"eDG" = ( +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-c" + }, +/obj/structure/sink/kitchen{ + dir = 8; + name = "sink"; + pixel_x = 21 + }, +/obj/structure/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/bar) "eDP" = ( /obj/structure/cable{ icon_state = "4-8" @@ -37011,13 +37070,6 @@ /obj/effect/floor_decal/industrial/outline/emergency_closet, /turf/simulated/floor/tiled, /area/horizon/hangar/operations) -"eMu" = ( -/obj/structure/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/service/bar) "eMv" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 4 @@ -37253,19 +37305,6 @@ icon_state = "dark_preview" }, /area/centcom/specops) -"eOv" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/primary/deck_3/central) "eOy" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -37669,25 +37708,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/rnd/xenoarch/storage) -"eRx" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/wood, -/area/horizon/service/mess_hall) "eRy" = ( /obj/structure/table/steel, /turf/simulated/floor/plating, @@ -38283,17 +38303,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/operations/break_room) -"eVf" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 4 - }, -/obj/item/radio/intercom/interrogation/west{ - dir = 4; - pixel_x = 6 - }, -/obj/structure/bed/stool/chair, -/turf/simulated/floor/tiled, -/area/horizon/security/interrogation/monitoring) "eVh" = ( /obj/structure/machinery/door/firedoor, /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -38519,6 +38528,19 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/medical/reception) +"eWr" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/obj/structure/machinery/meter{ + name = "Fuel Reserve"; + pixel_x = -23; + pixel_y = 4 + }, +/obj/structure/machinery/atmospherics/pipe/manifold4w/hidden/fuel, +/obj/structure/machinery/light/small/floor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/canary) "eWt" = ( /obj/effect/floor_decal/corner/dark_blue/full, /obj/structure/table/steel, @@ -38576,6 +38598,24 @@ /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{ @@ -39305,6 +39345,17 @@ /obj/structure/cable/yellow, /turf/simulated/floor/plating, /area/horizon/engineering/reactor/supermatter/mainchamber) +"fcP" = ( +/obj/structure/machinery/power/apc/north, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/structure/bed/stool/chair/sofa/right/beige, +/turf/simulated/floor/wood, +/area/horizon/service/mess_hall) "fdc" = ( /obj/structure/machinery/button/remote/airlock{ dir = 8; @@ -39317,6 +39368,13 @@ /obj/structure/machinery/light_switch/west, /turf/simulated/floor/tiled/freezer, /area/horizon/medical/washroom) +"fdd" = ( +/obj/structure/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/bar) "fde" = ( /obj/structure/machinery/chem_master{ dir = 4 @@ -39705,6 +39763,11 @@ /obj/structure/machinery/power/radial_floodlight, /turf/simulated/floor/carpet/rubber, /area/horizon/engineering/storage_hard/aft) +"feW" = ( +/obj/effect/floor_decal/industrial/hatch/firefighting_closet, +/obj/structure/closet/firecloset/full, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/mess_hall) "ffl" = ( /obj/structure/machinery/disposal/small/south, /obj/structure/disposalpipe/trunk, @@ -39933,6 +39996,26 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/carpet/rubber, /area/horizon/medical/pharmacy) +"fgw" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/structure/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/structure/machinery/light/floor{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/mess_hall) "fgy" = ( /obj/effect/floor_decal/industrial/outline/grey, /obj/effect/decal/cleanable/dirt, @@ -40733,22 +40816,6 @@ }, /turf/unsimulated/floor, /area/antag/mercenary) -"fmQ" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/effect/floor_decal/spline/plain/corner{ - dir = 4 - }, -/obj/structure/sink{ - pixel_y = 22 - }, -/obj/structure/mirror{ - pixel_y = 36 - }, -/obj/effect/floor_decal/spline/plain/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/crew/washroom/deck_2) "fmW" = ( /obj/effect/floor_decal/industrial/warning{ dir = 6 @@ -40797,6 +40864,27 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/hallway/interior) +"fng" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/light/floor{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/hallway/primary/deck_2/fore) "fnk" = ( /obj/effect/floor_decal/corner/mauve{ dir = 5 @@ -41453,6 +41541,14 @@ /obj/effect/floor_decal/industrial/outline/security, /turf/simulated/floor/tiled, /area/horizon/security/equipment) +"fqZ" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 7 + }, +/obj/random/pottedplant, +/obj/structure/machinery/light/floor, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/meeting_room) "fre" = ( /obj/structure/table/reinforced/steel, /obj/structure/machinery/door/firedoor, @@ -41688,24 +41784,6 @@ }, /turf/simulated/floor/holofloor/tiled/dark, /area/horizon/holodeck/source_boxingcourt) -"fsG" = ( -/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 = 8 - }, -/obj/structure/platform_stairs/full{ - dir = 4 - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/service/mess_hall) "fsO" = ( /obj/structure/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 @@ -42032,19 +42110,6 @@ /obj/effect/map_effect/window_spawner/full/reinforced/firedoor, /turf/simulated/floor/tiled/dark/full, /area/horizon/hallway/primary/deck_2/fore) -"fvB" = ( -/obj/structure/bed/stool/chair{ - dir = 1 - }, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 1 - }, -/obj/item/radio/intercom/interrogation/west{ - dir = 4; - pixel_x = 6 - }, -/turf/simulated/floor/tiled, -/area/horizon/security/interrogation/monitoring) "fvD" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -42098,6 +42163,19 @@ }, /turf/simulated/floor/tiled, /area/horizon/hangar/auxiliary) +"fvW" = ( +/obj/structure/platform_stairs/south_north_solo{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/obj/structure/machinery/firealarm/east, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/meeting_room) "fwa" = ( /obj/structure/machinery/papershredder, /turf/unsimulated/floor/marble, @@ -42173,20 +42251,6 @@ /obj/structure/machinery/vending/zora, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/hallway/fore) -"fxd" = ( -/obj/effect/floor_decal/spline/fancy/wood/corner, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/structure/machinery/light/small/floor, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" - }, -/turf/simulated/floor/wood, -/area/horizon/service/mess_hall) "fxe" = ( /obj/effect/floor_decal/corner/brown{ dir = 10 @@ -42326,13 +42390,6 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/reactor/indra/monitoring) -"fxO" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/obj/random/pottedplant, -/turf/simulated/floor/wood, -/area/horizon/hallway/primary/deck_2/central) "fxS" = ( /obj/structure/machinery/door/airlock/external{ dir = 1; @@ -42365,21 +42422,6 @@ }, /turf/simulated/floor/tiled/white, /area/merchant_station) -"fxX" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/obj/structure/bed/handrail{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/horizon/shuttle/intrepid/port_compartment) "fye" = ( /obj/effect/floor_decal/corner/red/diagonal, /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -42933,6 +42975,23 @@ dir = 4 }, /area/horizon/hangar/intrepid) +"fCP" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 7 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/machinery/light/spot, +/obj/structure/machinery/camera/network/command{ + c_tag = "Bridge - XO office"; + dir = 1 + }, +/turf/simulated/floor/wood, +/area/horizon/command/heads/xo) "fCV" = ( /obj/effect/floor_decal/corner/beige{ dir = 5 @@ -43300,6 +43359,22 @@ /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 @@ -43323,6 +43398,10 @@ /obj/structure/table/standard, /turf/unsimulated/floor/plating, /area/centcom/specops) +"fFs" = ( +/obj/structure/machinery/hologram/holopad, +/turf/simulated/floor/lino/diamond, +/area/horizon/service/mess_hall) "fFz" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 5 @@ -43536,6 +43615,12 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/investigations_hallway) +"fGW" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/obj/structure/machinery/light/floor, +/obj/structure/machinery/firealarm/south, +/turf/simulated/floor/tiled/white, +/area/horizon/engineering/washroom) "fGY" = ( /obj/effect/floor_decal/industrial/warning{ dir = 9 @@ -43609,6 +43694,15 @@ }, /turf/simulated/floor/tiled/dark/full, /area/shuttle/hapt) +"fHm" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/machinery/light/floor{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/meeting_room) "fHu" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/lattice/catwalk/indoor/grate/dark, @@ -43740,24 +43834,6 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/medical/gen_treatment) -"fIx" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/closet/walllocker/medical/firstaid{ - pixel_x = -32 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/effect/floor_decal/spline/plain/green{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/service/mess_hall) "fIA" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -44503,22 +44579,6 @@ }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"fNa" = ( -/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 = "2-4" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_2/service/starboard) "fNd" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 7 @@ -45013,6 +45073,17 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/medical/gen_treatment) +"fRa" = ( +/obj/effect/decal/fake_object{ + name = "cockpit ladder"; + pixel_x = 9; + pixel_y = -4 + }, +/obj/structure/machinery/door/window/northright{ + req_one_access = list(77) + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/shuttle/canary) "fRc" = ( /turf/simulated/wall/r_wall, /area/horizon/maintenance/deck_2/wing/starboard/far) @@ -45097,6 +45168,13 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/shuttle/intrepid/medical) +"fRz" = ( +/obj/structure/sign/radshield{ + dir = 4; + pixel_y = -3 + }, +/turf/simulated/wall, +/area/horizon/crew/washroom/deck_2) "fRB" = ( /obj/structure/machinery/alarm/north, /obj/item/material/shard{ @@ -45183,6 +45261,15 @@ }, /turf/simulated/floor/wood, /area/horizon/crew/lounge) +"fSj" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/outline_straight/service{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/mess_hall) "fSk" = ( /obj/structure/table/wood, /obj/random/pottedplant_small{ @@ -46963,22 +47050,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/weapons/longbow) -"ges" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'WARNING: FIRING RANGE'."; - name = "\improper WARNING: FIRING RANGE sign"; - pixel_y = 32 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/radio/intercom/interrogation/west{ - dir = 4; - pixel_x = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/security/firing_range) "geu" = ( /obj/structure/table/wood, /obj/random/pottedplant_small{ @@ -47519,6 +47590,15 @@ "gip" = ( /turf/simulated/wall/r_wall, /area/horizon/operations/secure_ammunition_storage) +"giv" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 7 + }, +/obj/structure/bed/stool/chair/padded/black{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/horizon/service/mess_hall) "giw" = ( /obj/structure/table/reinforced/steel, /obj/structure/machinery/button/remote/blast_door{ @@ -47633,15 +47713,6 @@ name = "staircase" }, /area/centcom/spawning) -"gje" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/outline_straight/service{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/service/mess_hall) "gjf" = ( /obj/structure/machinery/computer/shuttle_control/specops{ dir = 1 @@ -47754,16 +47825,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/engineering/atmos) -"gjI" = ( -/obj/structure/machinery/camera/network/third_deck{ - c_tag = "Third Deck - Investigator Entrance"; - dir = 1 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/horizon/stairwell/port/deck_3) "gjK" = ( /turf/simulated/wall/r_wall, /area/horizon/maintenance/substation/research) @@ -48110,10 +48171,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/lobby) -"glZ" = ( -/obj/effect/floor_decal/corner/brown, -/turf/simulated/floor/tiled/dark, -/area/horizon/shuttle/intrepid/port_compartment) "gmb" = ( /obj/structure/machinery/atmospherics/pipe/simple/visible/red{ dir = 4 @@ -48346,12 +48403,31 @@ /obj/effect/step_trigger/thrower/shuttle/south, /turf/space/transit/east, /area/template_noop) +"gnI" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 10 + }, +/obj/structure/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/machinery/firealarm/south, +/turf/simulated/floor/tiled, +/area/horizon/stairwell/engineering/deck_1) "gnK" = ( /obj/effect/floor_decal/spline/plain/corner{ dir = 1 }, /turf/unsimulated/floor, /area/antag/mercenary) +"gnL" = ( +/obj/structure/platform_deco{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain/green{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/mess_hall) "gnM" = ( /obj/structure/machinery/atmospherics/unary/vent_scrubber/on, /obj/effect/floor_decal/spline/plain/black{ @@ -48982,6 +49058,16 @@ /obj/effect/decal/cleanable/vomit, /turf/unsimulated/floor, /area/antag/raider) +"grl" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/horizon/service/mess_hall) "gro" = ( /obj/effect/floor_decal/spline/fancy/wood, /obj/structure/cult/tome{ @@ -49503,6 +49589,13 @@ name = "mossy grass" }, /area/horizon/holodeck/source_konyang) +"gvd" = ( +/obj/structure/sign/radshield{ + dir = 8; + pixel_y = -3 + }, +/turf/simulated/wall, +/area/horizon/crew/washroom/deck_2) "gvf" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/machinery/vending/coffee, @@ -49625,6 +49718,26 @@ }, /turf/simulated/floor, /area/horizon/maintenance/deck_3/security/port) +"gvS" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/condiment/shaker/salt{ + pixel_x = -7; + pixel_y = -8 + }, +/obj/item/reagent_containers/food/condiment/shaker/peppermill{ + pixel_x = -1; + pixel_y = -8 + }, +/obj/item/paper_bin{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/pen{ + pixel_x = 4; + pixel_y = 5 + }, +/turf/simulated/floor/lino/diamond, +/area/horizon/service/mess_hall) "gvV" = ( /obj/structure/machinery/door/firedoor{ req_one_access = list(24,11,67,73); @@ -49855,21 +49968,6 @@ /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"gxw" = ( -/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 - }, -/turf/simulated/floor/tiled, -/area/horizon/operations/machinist) "gxx" = ( /obj/effect/floor_decal/corner/lime/full{ dir = 8 @@ -49992,6 +50090,21 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/rnd/xenobiology/xenoflora) +"gyk" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/turf/simulated/floor/wood, +/area/horizon/service/mess_hall) "gyl" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 10 @@ -50022,6 +50135,18 @@ icon_state = "desert" }, /area/centcom/shared_dream) +"gyv" = ( +/obj/structure/machinery/status_display{ + pixel_y = 32 + }, +/obj/structure/machinery/firealarm/east, +/obj/effect/floor_decal/industrial/outline/service, +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/crew/washroom/deck_2) "gyy" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 4 @@ -50214,18 +50339,6 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/main/starboard) -"gAc" = ( -/obj/structure/machinery/holosign/service/kitchen{ - pixel_y = -32; - id = "kitchen" - }, -/obj/item/lore_radio{ - pixel_y = 4; - pixel_x = 2 - }, -/obj/structure/table/fancy/black, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/service/mess_hall) "gAf" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -50386,13 +50499,6 @@ /obj/effect/shuttle_landmark/escape_pod/start/pod4, /turf/simulated/floor/shuttle/dark_blue, /area/horizon/shuttle/escape_pod/pod4) -"gAZ" = ( -/obj/structure/sign/flag/idris{ - pixel_y = 32 - }, -/obj/structure/machinery/vending/quick_e_meals, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/service/mess_hall) "gBd" = ( /obj/effect/floor_decal/corner/white{ dir = 5 @@ -50419,12 +50525,6 @@ }, /turf/simulated/floor/plating, /area/horizon/engineering/atmos/air) -"gBt" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/horizon/command/bridge/meeting_room) "gBv" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/fuel{ dir = 4 @@ -50496,6 +50596,13 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/command/heads/hos) +"gBG" = ( +/obj/structure/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood/corner, +/turf/simulated/floor/wood, +/area/horizon/service/mess_hall) "gBH" = ( /obj/structure/table/reinforced/steel, /obj/structure/machinery/door/window/brigdoor/southleft{ @@ -50820,19 +50927,6 @@ "gEq" = ( /turf/simulated/floor/tiled/ramp/bottom, /area/shuttle/mercenary) -"gEy" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/horizon/service/mess_hall) "gEA" = ( /obj/effect/floor_decal/industrial/warning{ dir = 5 @@ -51220,6 +51314,16 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/maintenance/deck_2/wing/starboard/far) +"gGP" = ( +/obj/structure/bed/stool/chair{ + dir = 1 + }, +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 1 + }, +/obj/item/radio/intercom/interrogation/east, +/turf/simulated/floor/tiled, +/area/horizon/security/interrogation/monitoring) "gGS" = ( /obj/structure/bed/stool/chair/sofa/left/purple{ dir = 1 @@ -51389,6 +51493,13 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/command/bridge/minibar) +"gHP" = ( +/obj/structure/table/reinforced/steel, +/obj/effect/decal/cleanable/dirt, +/obj/item/crowbar/rescue_axe/tactical, +/obj/item/crowbar/rescue_axe/tactical, +/turf/unsimulated/floor/monotile, +/area/antag/burglar) "gHX" = ( /obj/structure/railing/mapped{ dir = 8 @@ -52280,6 +52391,15 @@ }, /turf/simulated/floor, /area/horizon/command/bridge/aibunker) +"gOd" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/obj/structure/bed/stool/chair/padded/beige{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/horizon/service/mess_hall) "gOh" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -52995,24 +53115,6 @@ }, /turf/unsimulated/floor, /area/centcom/evac) -"gTI" = ( -/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) "gTL" = ( /obj/structure/table/wood, /obj/item/flashlight/lamp/green{ @@ -53132,6 +53234,21 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/maintenance/substation/wing_starboard) +"gUz" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/intrepid/port_compartment) "gUA" = ( /obj/structure/tank_wall/oxygen{ density = 0; @@ -53731,6 +53848,23 @@ }, /turf/simulated/floor/carpet/art, /area/horizon/crew/lounge) +"gYg" = ( +/obj/effect/floor_decal/corner/lime/diagonal, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/spline/plain/green, +/obj/structure/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/crew/washroom/deck_2) "gYk" = ( /obj/structure/window/reinforced{ dir = 8 @@ -54370,63 +54504,6 @@ }, /turf/simulated/floor/marble/dark, /area/horizon/holodeck/source_trinary) -"hcX" = ( -/obj/structure/table/rack, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/material/knife/tacknife{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/material/knife/tacknife{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/material/knife/tacknife{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/material/knife/tacknife{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/melee/baton/stunrod{ - pixel_x = 1; - pixel_y = -2 - }, -/obj/item/melee/baton/stunrod{ - pixel_x = 1; - pixel_y = -2 - }, -/obj/item/melee/baton/stunrod{ - pixel_x = 1; - pixel_y = -2 - }, -/obj/item/melee/baton/stunrod{ - pixel_x = 1; - pixel_y = -2 - }, -/obj/item/shield/energy{ - pixel_x = -8; - pixel_y = 7 - }, -/obj/item/shield/energy{ - pixel_x = -8; - pixel_y = 7 - }, -/obj/item/shield/energy{ - pixel_x = -8; - pixel_y = 7 - }, -/obj/item/shield/energy{ - pixel_x = -8; - pixel_y = 7 - }, -/obj/item/crowbar/rescue_axe/tactical, -/obj/item/crowbar/rescue_axe/tactical, -/obj/item/crowbar/rescue_axe/tactical, -/obj/item/crowbar/rescue_axe/tactical, -/turf/unsimulated/floor, -/area/antag/mercenary) "hdc" = ( /obj/structure/bed/handrail{ dir = 8 @@ -55127,13 +55204,6 @@ /obj/effect/map_effect/window_spawner/full/reinforced/indestructible, /turf/simulated/floor, /area/tdome/tdome2) -"hhj" = ( -/obj/structure/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/machinist) "hhn" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 1 @@ -55192,6 +55262,19 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/operations/mining_main/refinery) +"hhA" = ( +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/yellow, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/engineering/storage_hard/lower) "hhC" = ( /obj/structure/machinery/conveyor{ id = "cargo_1" @@ -55385,6 +55468,25 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/horizon/hallway/primary/deck_2/central) +"hjj" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/structure/machinery/light/floor{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/mess_hall) "hjl" = ( /obj/structure/sign/waste_station{ pixel_y = 32 @@ -55535,19 +55637,6 @@ }, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_battlemonsters) -"hkp" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 10 - }, -/obj/structure/sign/directions/prop{ - dir = 8; - pixel_y = -22 - }, -/obj/structure/sign/directions/prop{ - pixel_y = -28 - }, -/turf/simulated/floor/tiled, -/area/horizon/stairwell/engineering/deck_1) "hkq" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -55586,20 +55675,6 @@ }, /turf/unsimulated/floor/dark_monotile, /area/antag/actor) -"hkJ" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 9 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/bed/handrail{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/shuttle/intrepid/port_compartment) "hkQ" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -56262,6 +56337,15 @@ /obj/random/dirt_75, /turf/simulated/floor/tiled/dark, /area/horizon/maintenance/deck_2/wing/port/nacelle) +"hnS" = ( +/obj/effect/floor_decal/corner/dark_green/diagonal, +/obj/structure/machinery/status_display{ + pixel_x = -32 + }, +/obj/effect/floor_decal/industrial/loading/yellow, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/horizon/stairwell/starboard/deck_1) "hnX" = ( /obj/structure/bed/stool/chair/office/light{ dir = 8 @@ -56315,6 +56399,16 @@ 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{ @@ -56366,20 +56460,6 @@ /obj/structure/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, /area/horizon/operations/break_room) -"hoQ" = ( -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 1 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/machinery/atm{ - dir = 1; - pixel_y = 28; - pixel_x = 2 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/service/mess_hall) "hoT" = ( /obj/structure/bed/stool/chair/padded/blue{ dir = 4 @@ -56753,6 +56833,18 @@ }, /turf/simulated/floor, /area/horizon/maintenance/deck_3/aft/holodeck) +"hrz" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/structure/machinery/light/floor{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/mess_hall) "hrA" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -57779,6 +57871,17 @@ }, /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/horizon/command/bridge/controlroom) +"hxf" = ( +/obj/structure/toilet{ + dir = 1; + pixel_y = -1 + }, +/obj/effect/floor_decal/corner/green/diagonal, +/obj/structure/sign/nosmoking_1{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/engineering/washroom) "hxm" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -58185,24 +58288,6 @@ dir = 4 }, /area/horizon/hangar/auxiliary) -"hAz" = ( -/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 - }, -/turf/simulated/floor/wood, -/area/horizon/command/bridge/meeting_room) "hAA" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/alarm/north, @@ -58553,26 +58638,6 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/wing/starboard/far) -"hCM" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/obj/structure/machinery/status_display{ - pixel_y = 32 - }, -/obj/structure/machinery/power/apc/north{ - is_critical = 1 - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/structure/machinery/camera/network/command{ - c_tag = "Bridge - Conference room"; - dir = 8 - }, -/obj/structure/machinery/light_switch/east, -/turf/simulated/floor/wood, -/area/horizon/command/bridge/meeting_room) "hCN" = ( /obj/random/dirt_75, /turf/simulated/floor/tiled, @@ -58651,13 +58716,6 @@ icon_state = "0,2" }, /area/shuttle/legion) -"hDo" = ( -/obj/structure/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/floor_decal/spline/fancy/wood/corner, -/turf/simulated/floor/wood, -/area/horizon/service/mess_hall) "hDp" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -58760,12 +58818,6 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/medical/surgery) -"hDK" = ( -/obj/structure/bed/stool/chair/sofa/left/red{ - dir = 1 - }, -/turf/simulated/floor/carpet/red, -/area/horizon/service/library) "hDM" = ( /obj/structure/machinery/light/small{ dir = 4 @@ -58877,19 +58929,6 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/service/kitchen) -"hEC" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/obj/structure/machinery/computer/guestpass{ - pixel_y = 27; - pixel_x = -2 - }, -/obj/structure/bed/stool/chair/padded/red{ - dir = 8 - }, -/turf/simulated/floor/lino/diamond, -/area/horizon/service/mess_hall) "hED" = ( /obj/structure/cable{ icon_state = "1-2" @@ -59288,27 +59327,6 @@ /obj/effect/floor_decal/industrial/hatch/red, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/armoury) -"hHh" = ( -/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 = 8 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/outline_straight/service{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/service/mess_hall) "hHl" = ( /obj/structure/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 @@ -59485,19 +59503,24 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/reactor/supermatter/mainchamber) -"hIp" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/firedoor, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +"hIv" = ( /obj/structure/cable/green{ - icon_state = "1-2" + icon_state = "4-8" }, -/obj/effect/floor_decal/industrial/hatch_door/service{ - dir = 8 +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/hallway/primary/deck_2/fore) +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/structure/machinery/camera/network/first_deck{ + c_tag = "First Deck - Central Stairwell" + }, +/obj/structure/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/stairwell/starboard/deck_1) "hIy" = ( /obj/structure/machinery/atmospherics/pipe/simple/visible/black, /obj/structure/machinery/atmospherics/pipe/simple/visible/cyan{ @@ -60029,25 +60052,6 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/wing/starboard/near) -"hLV" = ( -/obj/structure/machinery/turretid/stun{ - check_synth = 1; - name = "\improper AI Chamber Turret Control Console"; - pixel_x = -40; - pixel_y = 25 - }, -/obj/item/radio/intercom/west{ - name = "Common Channel"; - pixel_y = 18; - dir = 1; - pixel_x = 0 - }, -/obj/structure/machinery/firealarm/south, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor, -/area/horizon/ai/chamber) "hLX" = ( /obj/structure/machinery/door/airlock/external{ dir = 1; @@ -60290,15 +60294,6 @@ /obj/random/maintenance_junk_or_loot, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/main/starboard) -"hNL" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/obj/structure/platform_deco{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/service/mess_hall) "hNR" = ( /obj/effect/floor_decal/corner_wide/yellow/full{ dir = 4 @@ -61754,6 +61749,21 @@ /obj/structure/machinery/power/apc/super/critical/north, /turf/simulated/floor/tiled, /area/horizon/engineering/bluespace_drive) +"hYP" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/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 + }, +/turf/simulated/floor/wood, +/area/horizon/service/mess_hall) "hYR" = ( /obj/effect/decal/fake_object{ dir = 4; @@ -63067,6 +63077,13 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/service/mess_hall) +"igB" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/structure/machinery/light_switch/east, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/meeting_room) "igI" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -64072,15 +64089,6 @@ /obj/structure/railing/mapped, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/reactor/indra/mainchamber) -"ioi" = ( -/obj/structure/machinery/media/jukebox/audioconsole{ - anchored = 1 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/service/mess_hall) "ioj" = ( /obj/structure/disposalpipe/segment{ icon_state = "pipe-c" @@ -64255,6 +64263,17 @@ /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 @@ -66022,11 +66041,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/storage_hard/aft) -"iAJ" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/item/hullbeacon/red, -/turf/simulated/floor/reinforced/airless, -/area/horizon/exterior) "iAO" = ( /obj/structure/sign/vacuum, /turf/unsimulated/wall/darkshuttlewall, @@ -66221,13 +66235,6 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/horizon/service/custodial) -"iBU" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/obj/structure/platform_deco, -/turf/simulated/floor/tiled/dark, -/area/horizon/service/mess_hall) "iBV" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -66360,6 +66367,25 @@ }, /turf/unsimulated/floor/wood, /area/antag/actor) +"iCV" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/horizon/service/mess_hall) "iDd" = ( /obj/effect/floor_decal/corner/lime{ dir = 10 @@ -66479,6 +66505,28 @@ /obj/structure/machinery/light_switch/south, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/storage_hard/aft) +"iDJ" = ( +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/machinery/camera/network/service{ + c_tag = "Service - Mess Hall 4"; + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline_straight/service, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/mess_hall) "iDV" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -66917,6 +66965,13 @@ }, /turf/simulated/floor/marble/dark, /area/horizon/holodeck/source_luceism) +"iHm" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/structure/machinery/smartfridge/drinks, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/bar) "iHu" = ( /obj/structure/closet/crate/freezer/rations, /obj/effect/floor_decal/industrial/outline/blue, @@ -67104,21 +67159,6 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/substation/operations) -"iIN" = ( -/obj/structure/platform_stairs/south_north_solo{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/horizon/command/bridge/meeting_room) "iIR" = ( /obj/item/flashlight/lamp/lava/purple{ pixel_y = 8; @@ -67474,28 +67514,6 @@ /obj/structure/machinery/light/floor, /turf/simulated/floor/tiled/dark/full, /area/horizon/service/hydroponics) -"iLl" = ( -/obj/structure/machinery/door/airlock/maintenance{ - dir = 4; - name = "Machinist Workshop Maintenance"; - req_access = list(29) - }, -/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/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/maintenance/deck_2/service/starboard) "iLo" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -67759,16 +67777,6 @@ "iNc" = ( /turf/unsimulated/floor/freezer, /area/antag/mercenary) -"iNe" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/obj/structure/machinery/disposal/small/west, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/hallway/primary/deck_2/fore) "iNf" = ( /obj/structure/bed/stool/chair/shuttle{ dir = 4 @@ -68274,32 +68282,11 @@ /obj/effect/floor_decal/industrial/outline/grey, /turf/simulated/floor/plating, /area/horizon/hangar/auxiliary) -"iQl" = ( -/obj/item/reagent_containers/food/condiment/shaker/peppermill{ - pixel_x = 3; - pixel_y = 9 - }, -/obj/item/reagent_containers/food/condiment/shaker/salt{ - pixel_y = 9; - pixel_x = 8 - }, -/obj/structure/table/wood/gamblingtable, -/obj/structure/machinery/power/outlet{ - pixel_y = 3 - }, -/obj/item/flame/candle{ - pixel_x = -8; - pixel_y = 9 - }, -/obj/item/flame/candle{ - pixel_x = -4; - pixel_y = 9 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/turf/simulated/floor/wood, -/area/horizon/service/mess_hall) +"iQk" = ( +/obj/structure/table/stone/marble, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/bar) "iQp" = ( /obj/structure/bed/stool/chair/folding{ dir = 4 @@ -68618,6 +68605,14 @@ /obj/structure/bed/stool/padded/green, /turf/simulated/floor/tiled/white, /area/centcom/shared_dream) +"iSz" = ( +/obj/structure/machinery/disposal, +/obj/effect/floor_decal/industrial/outline/service, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/mess_hall) "iSC" = ( /obj/effect/floor_decal/corner_wide/green{ dir = 5 @@ -69319,13 +69314,6 @@ /obj/structure/shuttle/engine/propulsion/burst/left, /turf/unsimulated/floor/plating, /area/shuttle/skipjack) -"iXH" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/crew/washroom/deck_2) "iXO" = ( /obj/structure/machinery/atmospherics/unary/vent_pump{ icon_state = "map_vent_out"; @@ -69513,14 +69501,6 @@ /obj/item/modular_computer/laptop/preset/supply/om, /turf/simulated/floor/carpet, /area/horizon/command/heads/om) -"iYF" = ( -/obj/structure/table/wood, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/obj/item/storage/box/tcaf_pamphlet, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) "iYG" = ( /obj/structure/machinery/alarm/south, /turf/simulated/floor/plating, @@ -70301,13 +70281,6 @@ }, /turf/simulated/wall, /area/horizon/operations/office) -"jdG" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/effect/floor_decal/industrial/outline/service, -/obj/structure/machinery/atmospherics/portables_connector, -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/service/hydroponics) "jdK" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -70444,26 +70417,6 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/service/kitchen) -"jfj" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/light/small/floor, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/floor/wood, -/area/horizon/service/bar) "jfk" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -70944,6 +70897,27 @@ }, /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" @@ -71568,26 +71542,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/hangar/intrepid/interstitial) -"jlR" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/structure/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/structure/machinery/light/floor{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/service/mess_hall) "jlT" = ( /obj/structure/machinery/light/small, /obj/structure/machinery/papershredder{ @@ -71879,6 +71833,24 @@ }, /turf/unsimulated/floor/plating, /area/centcom/spawning) +"jnM" = ( +/obj/effect/floor_decal/corner/lime/diagonal, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain/green, +/obj/structure/machinery/light/small/floor, +/turf/simulated/floor/tiled/white, +/area/horizon/crew/washroom/deck_2) "jnO" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -71950,9 +71922,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/engineering/break_room) -"jnX" = ( -/turf/simulated/floor/wood, -/area/horizon/service/mess_hall) "joj" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -72351,16 +72320,6 @@ /obj/structure/machinery/door/firedoor, /turf/simulated/floor/tiled/dark/full, /area/horizon/rnd/hallway/secondary) -"jrf" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/structure/machinery/status_display{ - pixel_y = 32 - }, -/obj/structure/bed/stool/chair/sofa/left/beige, -/turf/simulated/floor/wood, -/area/horizon/service/mess_hall) "jrg" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/machinery/recharge_station, @@ -73058,18 +73017,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/storage_hard/upper) -"jvL" = ( -/obj/structure/machinery/power/apc/critical/west, -/obj/structure/railing/mapped, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/maintenance/deck_2/service/starboard) "jvO" = ( /obj/structure/machinery/atmospherics/pipe/zpipe/down/scrubbers{ dir = 1 @@ -73665,13 +73612,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/weapons/grauwolf) -"jzI" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/structure/machinery/smartfridge/drinks, -/turf/simulated/floor/tiled/dark, -/area/horizon/service/bar) "jzJ" = ( /obj/structure/machinery/holosign/service/kitchen{ id = "kitchen" @@ -73793,6 +73733,17 @@ /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor/monotile, /area/antag/jockey) +"jAA" = ( +/obj/structure/machinery/alarm/east, +/obj/structure/filingcabinet/chestdrawer{ + pixel_x = 10 + }, +/obj/structure/filingcabinet/filingcabinet{ + pixel_x = -5 + }, +/obj/structure/machinery/firealarm/north, +/turf/simulated/floor/lino/diamond, +/area/horizon/service/library) "jAG" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, @@ -74007,19 +73958,6 @@ }, /turf/simulated/floor/marble, /area/horizon/holodeck/source_trinary) -"jCe" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 8 - }, -/obj/structure/machinery/camera/network/service{ - c_tag = "Service - Mess Hall 1"; - dir = 1 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/turf/simulated/floor/wood, -/area/horizon/service/mess_hall) "jCh" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 5 @@ -74112,13 +74050,6 @@ /obj/random/maintenance_junk_or_loot, /turf/simulated/floor/tiled/dark/full, /area/horizon/maintenance/deck_2/research) -"jCE" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/obj/structure/machinery/firealarm/east, -/turf/simulated/floor/tiled/dark, -/area/horizon/service/mess_hall) "jCF" = ( /obj/structure/lattice, /turf/simulated/open, @@ -74438,6 +74369,20 @@ /obj/structure/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled, /area/horizon/security/brig) +"jFk" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/sortjunction/flipped{ + sortType = "Hydroponics" + }, +/obj/structure/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/mess_hall) "jFo" = ( /obj/effect/floor_decal/corner/black{ dir = 6 @@ -75044,6 +74989,24 @@ /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 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/mess_hall) +"jJG" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/structure/bed/stool/chair/padded/beige{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/horizon/service/mess_hall) "jJP" = ( /obj/structure/grille, /obj/structure/window/shuttle/scc_space_ship/cardinal, @@ -75070,16 +75033,6 @@ /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor, /area/antag/jockey) -"jJR" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/wood, -/area/horizon/service/mess_hall) "jJU" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -75140,6 +75093,21 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/rnd/lab) +"jKv" = ( +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/structure/bed/handrail{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/shuttle/intrepid/port_compartment) "jKw" = ( /obj/random/junk, /obj/structure/lattice/catwalk/indoor/grate/dark, @@ -75245,6 +75213,26 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/main/starboard) +"jLl" = ( +/obj/structure/mirror{ + pixel_y = 36 + }, +/obj/structure/sink{ + pixel_y = 28 + }, +/obj/effect/floor_decal/corner/green/diagonal, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/machinery/button/remote/airlock{ + dir = 4; + id = "engi_washroom"; + name = "Door Bolt Control"; + specialfunctions = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/engineering/washroom) "jLn" = ( /obj/structure/machinery/door/firedoor, /obj/structure/disposalpipe/segment, @@ -75520,6 +75508,25 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor, /area/horizon/maintenance/deck_3/aft/starboard) +"jNo" = ( +/obj/structure/table/wood, +/obj/structure/machinery/power/outlet{ + pixel_y = 3 + }, +/obj/item/flame/candle{ + pixel_x = 7; + pixel_y = 11 + }, +/obj/random/pottedplant_small{ + pixel_x = 8; + pixel_y = -10 + }, +/obj/item/flame/candle{ + pixel_x = 3; + pixel_y = 11 + }, +/turf/simulated/floor/lino/diamond, +/area/horizon/service/mess_hall) "jNp" = ( /obj/random/dirt_75, /obj/structure/lattice/catwalk/indoor/grate/dark, @@ -75768,6 +75775,21 @@ }, /turf/unsimulated/floor, /area/centcom/distress_prep) +"jOz" = ( +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/structure/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/intrepid/port_compartment) "jOF" = ( /obj/effect/step_trigger/teleporter/random{ affect_ghosts = 1; @@ -75977,22 +75999,6 @@ /obj/structure/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled/dark, /area/horizon/engineering/atmos) -"jPR" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/structure/mirror{ - pixel_y = 36 - }, -/obj/structure/sink{ - pixel_y = 22 - }, -/obj/effect/floor_decal/spline/plain/corner{ - dir = 4 - }, -/obj/effect/floor_decal/spline/plain/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/crew/washroom/deck_2) "jPS" = ( /obj/random/contraband, /obj/random/maintenance_junk_or_loot, @@ -76128,6 +76134,24 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/maintenance/deck_3/security/port) +"jQN" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/closet/walllocker/medical/firstaid{ + pixel_x = -32 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/effect/floor_decal/spline/plain/green{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/mess_hall) "jQT" = ( /obj/structure/machinery/atmospherics/pipe/manifold/hidden/black, /obj/structure/machinery/light, @@ -76220,6 +76244,12 @@ icon_state = "dark_preview" }, /area/centcom/holding) +"jRy" = ( +/obj/effect/floor_decal/industrial/hatch_door/service{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/mess_hall) "jRz" = ( /obj/structure/railing/mapped, /obj/effect/floor_decal/corner/dark_green/diagonal, @@ -76507,6 +76537,20 @@ icon_state = "dark_preview" }, /area/centcom/specops) +"jTm" = ( +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 1 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/machinery/atm{ + dir = 1; + pixel_y = 28; + pixel_x = 2 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/mess_hall) "jTp" = ( /turf/simulated/floor/marble/dark, /area/horizon/holodeck/source_tribunal) @@ -77456,27 +77500,6 @@ icon_state = "dark_preview" }, /area/antag/mercenary) -"jZQ" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/structure/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/horizon/service/mess_hall) "jZS" = ( /obj/structure/machinery/porta_turret, /obj/structure/cable/green{ @@ -77814,6 +77837,14 @@ }, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_emptycourt) +"kcf" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/vending/dinnerware/metal, +/obj/effect/floor_decal/industrial/hatch/service, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/mess_hall) "kch" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -78087,16 +78118,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/hangar/auxiliary) -"kdw" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/crew/washroom/deck_2) "kdC" = ( /obj/structure/grille, /obj/structure/machinery/door/firedoor, @@ -80073,6 +80094,25 @@ /obj/effect/map_effect/window_spawner/full/reinforced/indestructible, /turf/unsimulated/floor/dark_monotile, /area/antag/actor) +"kqE" = ( +/obj/structure/table/stone/marble, +/obj/structure/machinery/chemical_dispenser/coffeemaster/full{ + pixel_y = 19 + }, +/obj/structure/machinery/controlhub/bar{ + pixel_x = -5; + pixel_y = -8 + }, +/obj/structure/machinery/light_switch/idris{ + dir = 10; + pixel_x = 10; + pixel_y = -1 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/bar) "kqK" = ( /obj/structure/plasticflaps/airtight, /obj/structure/machinery/door/firedoor, @@ -80086,16 +80126,6 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/medical/surgery/storage) -"kqN" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden/yellow, -/obj/effect/floor_decal/corner/yellow/full{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/horizon/stairwell/engineering/deck_1) "kqP" = ( /obj/structure/machinery/power/apc/super/east, /obj/structure/cable/green, @@ -80135,10 +80165,6 @@ dir = 4 }, /area/horizon/hangar/auxiliary) -"kqZ" = ( -/obj/structure/machinery/hologram/holopad/long_range, -/turf/simulated/floor/lino/diamond, -/area/horizon/service/mess_hall) "krb" = ( /obj/effect/floor_decal/industrial/warning{ dir = 9 @@ -80304,12 +80330,25 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/medical/pharmacy) -"ksC" = ( -/obj/effect/floor_decal/industrial/hatch/service, -/obj/item/radio/intercom/west, -/obj/structure/machinery/vending/snack/horizon, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/hallway/primary/deck_2/fore) +"ksv" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/structure/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/intrepid/starboard_compartment) +"ksB" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/mess_hall) "ksI" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -81769,25 +81808,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/command/bridge/meeting_room) -"kAI" = ( -/obj/structure/ladder/up{ - pixel_y = 13 - }, -/obj/structure/cable{ - 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/dark, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_1/operations/starboard/far) "kAN" = ( /obj/effect/floor_decal/corner/brown{ dir = 10 @@ -81844,6 +81864,34 @@ name = "overgrowth" }, /area/horizon/holodeck/source_moghes) +"kBc" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/machinery/door/firedoor, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 8 + }, +/obj/structure/machinery/door/airlock/glass_command{ + dir = 1; + id_tag = "bridge_foyer"; + name = "Bridge"; + req_one_access = list(19) + }, +/obj/structure/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/obj/effect/map_effect/door_helper/unres, +/turf/simulated/floor/tiled/full, +/area/horizon/command/bridge/controlroom) "kBe" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -81933,28 +81981,6 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/hangar/port) -"kBr" = ( -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/machinery/camera/network/service{ - c_tag = "Service - Mess Hall 4"; - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline_straight/service, -/turf/simulated/floor/tiled/dark, -/area/horizon/service/mess_hall) "kBs" = ( /obj/structure/machinery/light{ dir = 4 @@ -81994,6 +82020,25 @@ /obj/effect/map_effect/window_spawner/full/reinforced/firedoor, /turf/simulated/floor/tiled/dark/full, /area/horizon/hallway/primary/deck_2/central) +"kBy" = ( +/obj/structure/platform_deco, +/obj/structure/disposalpipe/segment{ + 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/effect/floor_decal/spline/plain/green{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/mess_hall) "kBE" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 9 @@ -82650,34 +82695,6 @@ }, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior/no_shields) -"kFZ" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/map_effect/door_helper/unres, -/obj/structure/machinery/door/firedoor, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/industrial/hatch_door/yellow{ - dir = 8 - }, -/obj/structure/machinery/door/airlock/glass_command{ - dir = 1; - id_tag = "bridge_foyer"; - name = "Bridge"; - req_one_access = list(19) - }, -/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/tiled/full, -/area/horizon/command/bridge/controlroom) "kGa" = ( /obj/structure/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 @@ -83126,10 +83143,6 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/unsimulated/floor, /area/centcom/spawning) -"kIw" = ( -/obj/effect/floor_decal/corner/yellow/full, -/turf/simulated/floor/tiled, -/area/horizon/stairwell/engineering/deck_1) "kIy" = ( /obj/structure/machinery/light, /obj/effect/floor_decal/corner/brown{ @@ -83544,6 +83557,27 @@ /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, @@ -83682,6 +83716,17 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/warden) +"kMl" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/obj/structure/machinery/camera/network/service{ + c_tag = "Service - Mess Hall 2"; + dir = 8 + }, +/obj/structure/machinery/firealarm/east, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/mess_hall) "kMz" = ( /obj/structure/table/reinforced/steel, /obj/structure/machinery/newscaster/north{ @@ -83811,6 +83856,16 @@ /obj/structure/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled/white, /area/horizon/rnd/test_range) +"kNc" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/machinery/status_display{ + pixel_y = 32 + }, +/obj/structure/bed/stool/chair/sofa/left/beige, +/turf/simulated/floor/wood, +/area/horizon/service/mess_hall) "kNd" = ( /obj/random/dirt_75, /obj/item/trash/cigbutt/cigarbutt{ @@ -84399,6 +84454,13 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/command/bridge/upperdeck) +"kSa" = ( +/obj/structure/machinery/light/floor, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/turf/simulated/floor/wood, +/area/horizon/service/mess_hall) "kSd" = ( /obj/effect/floor_decal/corner/red{ dir = 8 @@ -85638,15 +85700,6 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/security/autopsy_laboratory) -"law" = ( -/obj/effect/floor_decal/spline/fancy/wood/cee{ - dir = 4 - }, -/obj/structure/synthesized_instrument/synthesizer/piano{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/horizon/service/bar) "laF" = ( /obj/structure/shuttle_part/tcfl{ icon_state = "3,6" @@ -85776,18 +85829,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/maintenance/substation/engineering/lower) -"lbl" = ( -/obj/effect/floor_decal/corner/dark_green/diagonal, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/status_display{ - pixel_x = -32 - }, -/obj/effect/floor_decal/industrial/loading/yellow, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/horizon/stairwell/starboard/deck_1) "lbm" = ( /turf/unsimulated/wall/fakeairlock{ icon = 'icons/obj/doors/Doorext.dmi'; @@ -85998,13 +86039,6 @@ }, /turf/simulated/floor/plating, /area/horizon/shuttle/canary) -"lcM" = ( -/obj/structure/platform/cutout, -/obj/structure/platform_stairs/full/east_west_cap{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/service/mess_hall) "lcN" = ( /obj/random/contraband, /obj/random/junk, @@ -86192,12 +86226,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/engineering/atmos) -"ldI" = ( -/obj/effect/floor_decal/corner/red/full, -/obj/structure/reagent_dispensers/water_cooler, -/obj/structure/machinery/alarm/west, -/turf/simulated/floor/tiled/dark, -/area/horizon/security/interrogation_1) "ldJ" = ( /obj/structure/reagent_dispensers/watertank, /obj/effect/floor_decal/corner/mauve/full, @@ -86330,6 +86358,17 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/unsimulated/floor, /area/centcom/legion) +"lew" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/outline_straight/service, +/obj/effect/floor_decal/industrial/arrow/service, +/obj/structure/platform{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/mess_hall) "lex" = ( /obj/effect/step_trigger/thrower/shuttle/west, /turf/unsimulated/mineral/asteroid, @@ -86765,6 +86804,26 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/horizon/hallway/primary/deck_3/starboard/docks) +"lhR" = ( +/obj/structure/machinery/computer/ship/helm/cockpit{ + pixel_y = -18 + }, +/obj/structure/machinery/light/spot, +/obj/structure/bed/stool/chair/cockpit, +/obj/structure/machinery/computer/ship/engines/cockpit{ + pixel_x = 26 + }, +/obj/structure/machinery/computer/shuttle_control/explore/canary/left{ + pixel_x = -25; + req_one_access = list(73,74); + req_access = null + }, +/obj/item/rig/eva/pilot/equipped, +/obj/item/clothing/head/helmet/pilot/scc{ + pixel_y = 4 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/shuttle/canary) "lhU" = ( /obj/effect/floor_decal/spline/fancy/wood/cee{ dir = 8 @@ -87281,25 +87340,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/medical/icu) -"lkM" = ( -/obj/structure/platform_deco, -/obj/structure/disposalpipe/segment{ - 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/effect/floor_decal/spline/plain/green{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/service/mess_hall) "lkN" = ( /obj/structure/flora/ausbushes/sparsegrass, /obj/item/radio/intercom/west, @@ -87655,13 +87695,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/engineering/bluespace_drive) -"lnC" = ( -/obj/structure/sign/radshield{ - dir = 4; - pixel_y = -3 - }, -/turf/simulated/wall, -/area/horizon/crew/washroom/deck_2) "lnL" = ( /obj/structure/machinery/portable_atmospherics/canister/oxygen, /obj/item/tank/air, @@ -87815,20 +87848,6 @@ icon_state = "wood" }, /area/centcom/legion) -"loP" = ( -/obj/item/radio/intercom/south, -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/structure/machinery/camera/network/first_deck{ - c_tag = "First Deck - Central Stairwell"; - dir = 1 - }, -/obj/structure/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/horizon/stairwell/starboard/deck_1) "loS" = ( /obj/random/dirt_75, /obj/structure/machinery/firealarm/west, @@ -87965,18 +87984,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"lpE" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/effect/floor_decal/spline/plain/lime{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/service/chapel/office) "lpF" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -88153,16 +88160,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/maintenance/deck_2/wing/starboard/near) -"lqJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/obj/structure/machinery/light/small/floor, -/turf/simulated/floor/lino/diamond, -/area/horizon/service/mess_hall) "lqK" = ( /obj/effect/floor_decal/corner_wide/paleblue{ dir = 5 @@ -88497,6 +88494,19 @@ icon_state = "dark_preview" }, /area/centcom/holding) +"lsE" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain/corner/green{ + dir = 1 + }, +/obj/structure/machinery/disposal/small/west, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/mess_hall) "lsM" = ( /obj/effect/floor_decal/corner/red/diagonal, /obj/effect/floor_decal/spline/fancy, @@ -88637,6 +88647,19 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/main/starboard) +"ltJ" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/horizon/service/mess_hall) "ltK" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/atmospherics/pipe/simple/hidden/aux{ @@ -88862,14 +88885,6 @@ icon_state = "wood" }, /area/antag/raider) -"luY" = ( -/obj/effect/floor_decal/industrial/outline/service, -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/full, -/area/horizon/crew/washroom/deck_2) "lvg" = ( /obj/structure/coatrack{ pixel_x = 7; @@ -88892,6 +88907,15 @@ /obj/random/dirt_75, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/wing/port/far) +"lvk" = ( +/obj/structure/machinery/media/jukebox/audioconsole{ + anchored = 1 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/mess_hall) "lvs" = ( /obj/structure/machinery/computer/shuttle_control/multi/legion, /turf/unsimulated/floor{ @@ -89356,13 +89380,6 @@ /obj/structure/reagent_dispensers/coolanttank, /turf/simulated/floor/carpet/rubber, /area/horizon/engineering/storage_hard/aft) -"lzp" = ( -/obj/effect/floor_decal/corner/dark_green/full, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/horizon/stairwell/starboard/deck_2) "lzr" = ( /obj/effect/floor_decal/industrial/outline/grey, /obj/random/canister/empty, @@ -89660,6 +89677,15 @@ "lAZ" = ( /turf/simulated/wall/r_wall, /area/horizon/maintenance/deck_1/atmos_crosser) +"lBe" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/bed/stool/chair/padded/black{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/horizon/service/mess_hall) "lBr" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -89816,6 +89842,28 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/maintenance/deck_2/wing/starboard/near) +"lCf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/machinery/light_switch/east{ + pixel_y = -23; + dir = 2; + pixel_x = 5 + }, +/obj/structure/machinery/firealarm/south, +/turf/simulated/floor/plating, +/area/horizon/service/chapel/corpse_storage) "lCj" = ( /obj/structure/railing/mapped{ dir = 4 @@ -91122,6 +91170,10 @@ }, /turf/simulated/floor/tiled, /area/horizon/operations/office) +"lJW" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/wood, +/area/horizon/service/mess_hall) "lJX" = ( /obj/item/storage/slide_projector, /obj/structure/table/reinforced/glass, @@ -91611,6 +91663,16 @@ /obj/structure/machinery/light_switch/south, /turf/simulated/floor/tiled/white, /area/horizon/operations/break_room) +"lNs" = ( +/obj/structure/table/rack, +/obj/random/melee, +/obj/item/airbubble/syndie, +/obj/item/airbubble/syndie, +/obj/item/airbubble/syndie, +/obj/item/crowbar/rescue_axe/tactical, +/obj/item/crowbar/rescue_axe/tactical, +/turf/simulated/floor/plating, +/area/shuttle/skipjack) "lNt" = ( /obj/structure/sign/nosmoking_1{ pixel_y = 32 @@ -91928,18 +91990,6 @@ }, /turf/simulated/floor/wood/maple, /area/horizon/holodeck/source_cafe) -"lQI" = ( -/obj/effect/floor_decal/corner/dark_green/full, -/obj/effect/floor_decal/industrial/outline_straight/service, -/obj/effect/floor_decal/industrial/arrow/service, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/horizon/service/mess_hall) "lQM" = ( /obj/structure/table/standard, /obj/structure/machinery/requests_console/west{ @@ -92026,10 +92076,27 @@ /obj/structure/stairs_lower/stairs_upper, /turf/simulated/wall/r_wall, /area/horizon/rnd/xenoarch/atrium) +"lRD" = ( +/obj/effect/floor_decal/corner/lime/diagonal, +/obj/structure/cable/green, +/obj/structure/machinery/power/apc/south, +/obj/effect/floor_decal/spline/plain/green{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/crew/washroom/deck_2) "lRF" = ( /obj/effect/step_trigger/thrower/shuttle/southeast, /turf/space/transit/east, /area/template_noop) +"lRS" = ( +/obj/structure/table/wood, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/obj/item/storage/box/tcaf_pamphlet, +/turf/unsimulated/floor, +/area/centcom/legion/hangar5) "lRV" = ( /turf/simulated/wall, /area/horizon/security/autopsy_laboratory) @@ -92095,6 +92162,16 @@ }, /turf/simulated/floor/tiled, /area/horizon/hallway/primary/deck_3/central) +"lSz" = ( +/obj/effect/floor_decal/corner/lime/diagonal, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/crew/washroom/deck_2) "lSB" = ( /obj/structure/reagent_dispensers/extinguisher, /obj/effect/floor_decal/corner/red/diagonal, @@ -92747,18 +92824,6 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/legion) -"lXQ" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/obj/structure/sink/kitchen{ - dir = 8; - name = "sink"; - pixel_x = 19 - }, -/obj/effect/floor_decal/spline/plain/corner/green, -/turf/simulated/floor/tiled/dark, -/area/horizon/service/mess_hall) "lYc" = ( /obj/structure/grille, /obj/structure/window/shuttle/scc_space_ship, @@ -92888,15 +92953,6 @@ }, /turf/simulated/floor/wood, /area/horizon/command/heads/xo) -"lYI" = ( -/obj/structure/platform_deco{ - dir = 4 - }, -/obj/effect/floor_decal/spline/plain/green{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/service/mess_hall) "lYJ" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 5 @@ -92917,6 +92973,29 @@ }, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) +"lYR" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 1 + }, +/obj/structure/machinery/light/small/floor, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/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/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/horizon/service/mess_hall) "lYS" = ( /obj/item/reagent_containers/glass/beaker/large{ pixel_x = 9; @@ -93477,21 +93556,6 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/rnd/xenoarch/presentation) -"mcc" = ( -/obj/structure/table/stone/marble, -/obj/item/storage/box/large/produce{ - pixel_x = -1; - pixel_y = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/item/reagent_containers/food/condiment/sugar{ - pixel_x = -5; - pixel_y = -3 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/service/kitchen) "mci" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 4 @@ -93869,17 +93933,6 @@ /obj/effect/floor_decal/spline/fancy/wood/full, /turf/simulated/floor/wood, /area/horizon/hallway/primary/deck_3/central) -"meW" = ( -/obj/structure/closet/emcloset/communal, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/emergency_closet, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/horizon/security/brig) "mfb" = ( /obj/structure/platform{ dir = 1 @@ -93888,6 +93941,15 @@ dir = 4 }, /area/horizon/maintenance/deck_1/wing/starboard/far) +"mfc" = ( +/obj/structure/platform_deco{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain/green{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/mess_hall) "mfe" = ( /turf/simulated/floor/tiled/dark/full, /area/horizon/maintenance/deck_3/aft/starboard/far) @@ -94038,21 +94100,28 @@ /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor/wood, /area/antag/burglar) -"mgk" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +"mgl" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/dark_green{ dir = 5 }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/item/radio/intercom/north, /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 + dir = 4 + }, +/obj/structure/sign/emergency/evacuation{ + dir = 8 }, /obj/structure/cable/green{ - icon_state = "1-4" + icon_state = "2-4" }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/shuttle/intrepid/starboard_compartment) +/turf/simulated/floor/tiled, +/area/horizon/stairwell/starboard/deck_1) "mgm" = ( /obj/structure/window/shuttle/scc_space_ship, /obj/structure/grille, @@ -94498,12 +94567,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/engineering/equipment) -"miw" = ( -/obj/structure/bed/stool/chair/wood{ - dir = 8 - }, -/turf/simulated/floor/lino/diamond, -/area/horizon/service/mess_hall) "mix" = ( /obj/structure/shuttle_part/ert{ icon_state = "10,2"; @@ -95732,6 +95795,15 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, /area/horizon/engineering/atmos/propulsion) +"mrj" = ( +/obj/effect/floor_decal/industrial/hatch/service, +/obj/structure/machinery/vending/mredispenser, +/obj/structure/machinery/camera/network/service{ + c_tag = "Service - Mess Hallway"; + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/hallway/primary/deck_2/fore) "mrl" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 @@ -96580,28 +96652,6 @@ }, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_battlemonsters) -"mxl" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 7 - }, -/obj/item/flame/candle{ - pixel_x = 8; - pixel_y = 12 - }, -/obj/item/reagent_containers/food/condiment/shaker/peppermill{ - pixel_x = -7; - pixel_y = 4 - }, -/obj/item/reagent_containers/food/condiment/shaker/salt{ - pixel_y = 4; - pixel_x = -2 - }, -/obj/structure/machinery/power/outlet{ - pixel_y = 3 - }, -/obj/structure/table/wood, -/turf/simulated/floor/wood, -/area/horizon/service/mess_hall) "mxo" = ( /obj/structure/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -96718,6 +96768,14 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/weapons/longbow) +"myg" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/machinery/disposal/airless, +/obj/effect/floor_decal/industrial/outline/service, +/turf/simulated/floor/tiled/full, +/area/horizon/crew/washroom/deck_2) "myn" = ( /obj/structure/disposalpipe/junction/yjunction, /turf/simulated/floor/tiled/white, @@ -96831,16 +96889,6 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"myY" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/horizon/operations/machinist) "mzf" = ( /obj/structure/window/shuttle/scc_space_ship, /obj/structure/grille, @@ -97647,15 +97695,6 @@ /obj/random/dirt_75, /turf/simulated/floor/tiled/gunmetal/full, /area/horizon/operations/ship_supply_warehouse) -"mFe" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 7 - }, -/obj/structure/bed/stool/chair/padded/black{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/horizon/service/mess_hall) "mFg" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -98267,6 +98306,19 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/reactor/indra/smes) +"mIs" = ( +/obj/effect/floor_decal/corner/lime/diagonal, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/effect/floor_decal/spline/plain/corner/green{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/crew/washroom/deck_2) "mIw" = ( /turf/unsimulated/wall/steel, /area/antag/actor) @@ -98391,19 +98443,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/hangar/intrepid) -"mJA" = ( -/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, -/turf/simulated/floor/plating, -/area/horizon/operations/machinist) "mJE" = ( /obj/structure/cable{ icon_state = "0-8" @@ -98435,6 +98474,18 @@ }, /turf/simulated/floor/plating, /area/horizon/engineering/bluespace_drive) +"mJP" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 9 + }, +/obj/structure/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/stairwell/engineering/deck_2) "mJR" = ( /obj/structure/machinery/atmospherics/unary/outlet_injector{ frequency = 1441; @@ -98514,6 +98565,25 @@ /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 @@ -99099,30 +99169,21 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/rnd/xenobiology/foyer) +"mOr" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/horizon/service/mess_hall) "mOs" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/machinery/portable_atmospherics/canister, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/bluespace_drive) -"mOv" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/structure/machinery/light/floor{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/service/mess_hall) "mOx" = ( /obj/structure/machinery/light, /obj/effect/floor_decal/corner/dark_blue{ @@ -99497,17 +99558,6 @@ /obj/structure/machinery/door/firedoor, /turf/simulated/floor/tiled/dark, /area/horizon/ai/upload) -"mRv" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/machinery/light/small/floor, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/horizon/service/mess_hall) "mRz" = ( /obj/structure/shuttle_part/mercenary/small{ icon_state = "8,5" @@ -100524,14 +100574,6 @@ }, /turf/unsimulated/floor/carpet, /area/centcom/specops) -"mYY" = ( -/obj/structure/machinery/alarm/north, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_2/wing/starboard) "mZa" = ( /obj/structure/closet/secure_closet{ req_access = list(150) @@ -101377,23 +101419,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/maintenance/deck_1/main/port/shortcut) -"ndI" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/spline/plain/green, -/obj/structure/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/crew/washroom/deck_2) "ndK" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -101453,15 +101478,6 @@ }, /turf/simulated/floor/reinforced, /area/horizon/command/bridge/controlroom) -"nej" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/service/mess_hall) "nem" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -102001,6 +102017,16 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/service/bar) +"nhz" = ( +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/yellow, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/engineering/storage_hard/lower) "nhL" = ( /obj/structure/shuttle_part/mercenary/small{ icon_state = "1,10" @@ -102146,6 +102172,20 @@ /obj/item/clothing/gloves/yellow/specialu, /turf/simulated/floor/tiled/dark, /area/horizon/engineering/storage/tech) +"niH" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/structure/machinery/light/small/floor, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood, +/area/horizon/service/mess_hall) "niJ" = ( /obj/effect/decal/rolling_fog, /obj/structure/machinery/door/window/holowindoor, @@ -102425,17 +102465,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/storage/eva) -"nli" = ( -/obj/structure/machinery/computer/ship/navigation/terminal{ - dir = 4 - }, -/obj/structure/machinery/holosign/service/bar{ - id = "bar"; - pixel_y = -32 - }, -/obj/effect/floor_decal/industrial/outline/service, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/service/mess_hall) "nlj" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 1 @@ -102712,21 +102741,6 @@ /obj/effect/map_effect/perma_light/starlight/wide, /turf/space, /area/template_noop) -"nni" = ( -/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/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/horizon/stairwell/starboard/deck_1) "nnk" = ( /obj/effect/floor_decal/spline/fancy{ dir = 10 @@ -104402,6 +104416,18 @@ }, /turf/simulated/floor/tiled, /area/horizon/engineering/bluespace_drive) +"nAk" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/machinery/light/floor{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/mess_hall) "nAl" = ( /obj/effect/floor_decal/industrial/warning{ dir = 6 @@ -104847,6 +104873,9 @@ }, /turf/simulated/floor/lino, /area/horizon/service/chapel/main) +"nCX" = ( +/turf/simulated/floor/wood, +/area/horizon/service/mess_hall) "nDc" = ( /obj/structure/machinery/light{ dir = 1 @@ -105377,6 +105406,11 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/white, /area/horizon/operations/break_room) +"nGm" = ( +/obj/structure/machinery/alarm/north, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard) "nGp" = ( /obj/structure/tank_wall/air{ density = 0; @@ -105555,6 +105589,24 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/maintenance/deck_3/security/port) +"nHn" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/spline/plain/green{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Chef" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/service/kitchen) "nHo" = ( /obj/structure/window/shuttle/unique/scc/scout{ icon_state = "5,3" @@ -105819,6 +105871,22 @@ /obj/structure/table/standard, /turf/simulated/floor/tiled/white, /area/horizon/operations/break_room) +"nJj" = ( +/obj/effect/floor_decal/corner/lime/diagonal, +/obj/effect/floor_decal/spline/plain/corner{ + dir = 4 + }, +/obj/structure/sink{ + pixel_y = 22 + }, +/obj/structure/mirror{ + pixel_y = 36 + }, +/obj/effect/floor_decal/spline/plain/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/crew/washroom/deck_2) "nJt" = ( /obj/structure/shuttle_part/ccia{ icon_state = "12,2" @@ -105931,6 +105999,15 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/command/bridge/aibunker) +"nJX" = ( +/obj/structure/table/stone/marble, +/obj/structure/machinery/vending/wallmed1{ + pixel_y = 30; + req_access = list(110) + }, +/obj/item/eftpos, +/turf/simulated/floor/tiled/dark, +/area/shuttle/merchant) "nKa" = ( /obj/effect/floor_decal/corner_wide/green{ dir = 10 @@ -106072,6 +106149,12 @@ "nKs" = ( /turf/simulated/floor/plating, /area/horizon/rnd/eva) +"nKu" = ( +/obj/effect/floor_decal/industrial/hatch/service, +/obj/item/radio/intercom/west, +/obj/structure/machinery/vending/snack/horizon, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/hallway/primary/deck_2/fore) "nKz" = ( /obj/structure/cable{ icon_state = "1-2" @@ -106394,6 +106477,28 @@ /obj/structure/machinery/alarm/north, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/wing/port/nacelle) +"nMW" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 7 + }, +/obj/item/flame/candle{ + pixel_x = 8; + pixel_y = 12 + }, +/obj/item/reagent_containers/food/condiment/shaker/peppermill{ + pixel_x = -7; + pixel_y = 4 + }, +/obj/item/reagent_containers/food/condiment/shaker/salt{ + pixel_y = 4; + pixel_x = -2 + }, +/obj/structure/machinery/power/outlet{ + pixel_y = 3 + }, +/obj/structure/table/wood, +/turf/simulated/floor/wood, +/area/horizon/service/mess_hall) "nNd" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden{ dir = 4 @@ -107041,23 +107146,6 @@ /obj/structure/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled/dark, /area/horizon/service/bar) -"nRP" = ( -/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 = 8 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/machinery/hologram/holopad, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/horizon/service/mess_hall) "nRR" = ( /obj/structure/filingcabinet/chestdrawer, /turf/simulated/floor/tiled/white, @@ -107289,14 +107377,6 @@ /obj/effect/map_effect/window_spawner/full/reinforced/firedoor, /turf/simulated/floor/tiled/dark/full, /area/horizon/operations/machinist) -"nTD" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/vending/dinnerware/metal, -/obj/effect/floor_decal/industrial/hatch/service, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/service/mess_hall) "nTE" = ( /obj/effect/floor_decal/industrial/warning/corner, /obj/effect/floor_decal/industrial/warning, @@ -107488,6 +107568,28 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/dark/full, /area/horizon/maintenance/deck_3/aft/starboard/far) +"nUS" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/table/wood, +/obj/item/reagent_containers/food/condiment/shaker/peppermill{ + pixel_x = 5; + pixel_y = 10 + }, +/obj/item/reagent_containers/food/condiment/shaker/salt{ + pixel_y = 10; + pixel_x = 10 + }, +/obj/item/flame/candle{ + pixel_x = -3; + pixel_y = 16 + }, +/obj/structure/machinery/power/outlet{ + pixel_y = 3 + }, +/turf/simulated/floor/wood, +/area/horizon/service/mess_hall) "nUX" = ( /obj/effect/floor_decal/corner/mauve{ dir = 6 @@ -107580,27 +107682,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/engineering/hallway/fore) -"nVT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/machinery/light_switch/east{ - pixel_y = -20; - dir = 2; - pixel_x = 5 - }, -/turf/simulated/floor/plating, -/area/horizon/service/chapel/corpse_storage) "nVV" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -108263,21 +108344,6 @@ /obj/structure/machinery/light, /turf/unsimulated/floor/wood, /area/centcom/bar) -"oaW" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/horizon/service/mess_hall) "oaZ" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 9 @@ -108568,16 +108634,6 @@ }, /turf/unsimulated/floor/plating, /area/shuttle/legion) -"ocO" = ( -/obj/structure/machinery/alarm/east, -/obj/structure/filingcabinet/chestdrawer{ - pixel_x = 10 - }, -/obj/structure/filingcabinet/filingcabinet{ - pixel_x = -5 - }, -/turf/simulated/floor/lino/diamond, -/area/horizon/service/library) "odf" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 8 @@ -108615,24 +108671,6 @@ /obj/item/holo/practicesword/holorapier, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_boxingcourt) -"odp" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 5 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/bed/handrail{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/structure/machinery/power/apc/shuttle/east, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/shuttle/intrepid/starboard_compartment) "odx" = ( /obj/structure/machinery/door/blast/shutters{ dir = 2; @@ -108907,15 +108945,6 @@ }, /turf/unsimulated/floor, /area/centcom/legion) -"oeW" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/service/bar) "oeZ" = ( /turf/unsimulated/wall/riveted, /area/template_noop) @@ -109223,6 +109252,12 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/command/bridge/aibunker) +"ogt" = ( +/obj/structure/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/horizon/service/mess_hall) "ogv" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden{ dir = 4 @@ -109605,12 +109640,6 @@ /obj/structure/machinery/meter, /turf/simulated/floor/plating, /area/horizon/rnd/xenoarch/atrium) -"oja" = ( -/obj/structure/bed/stool/chair/wood{ - dir = 4 - }, -/turf/simulated/floor/lino/diamond, -/area/horizon/service/mess_hall) "ojb" = ( /turf/simulated/wall, /area/horizon/maintenance/deck_2/wing/starboard/nacelle) @@ -109670,19 +109699,6 @@ }, /turf/unsimulated/floor, /area/antag/mercenary) -"ojm" = ( -/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 - }, -/turf/simulated/floor/plating, -/area/horizon/operations/machinist) "ojo" = ( /obj/structure/cable/orange{ icon_state = "4-8" @@ -109795,6 +109811,34 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/checkpoint) +"okq" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 4 + }, +/obj/structure/machinery/light/small/floor, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/wood, +/area/horizon/service/mess_hall) +"oks" = ( +/obj/effect/floor_decal/industrial/hatch/service, +/obj/structure/machinery/computer/arcade, +/obj/structure/sign/poster/lore/tcaf{ + pixel_y = 30; + pixel_x = 6 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/bar) "okw" = ( /turf/simulated/wall, /area/horizon/maintenance/substation/wing_port) @@ -109865,30 +109909,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/reactor/supermatter/smes) -"okP" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/machinery/light/floor{ - dir = 4 - }, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline_straight/service{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/service/mess_hall) "okS" = ( /obj/structure/machinery/atmospherics/portables_connector{ dir = 4 @@ -110067,19 +110087,6 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"omp" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/floor_decal/spline/plain/corner/green{ - dir = 1 - }, -/obj/structure/machinery/disposal/small/west, -/turf/simulated/floor/tiled/dark, -/area/horizon/service/mess_hall) "omu" = ( /obj/effect/floor_decal/corner/yellow{ dir = 4 @@ -110217,17 +110224,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/rnd/xenoarch/isolation_b) -"onk" = ( -/obj/structure/machinery/computer/ship/targeting/cockpit{ - pixel_x = -25; - req_one_access = list(73,74) - }, -/obj/structure/bed/stool/chair/cockpit, -/obj/structure/machinery/computer/ship/sensors/cockpit/right{ - pixel_x = 25 - }, -/turf/simulated/floor/carpet/rubber, -/area/horizon/shuttle/canary) "onl" = ( /obj/effect/landmark/entry_point/fore{ name = "fore, deck 3 port docks" @@ -110625,6 +110621,16 @@ }, /turf/unsimulated/floor/marble, /area/antag/wizard) +"opY" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/storage_hard/lower) "opZ" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -111824,13 +111830,6 @@ /obj/structure/machinery/fabricator/autolathe, /turf/simulated/floor/carpet/rubber, /area/horizon/rnd/lab) -"oxI" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 7 - }, -/obj/random/pottedplant, -/turf/simulated/floor/wood, -/area/horizon/command/bridge/meeting_room) "oxJ" = ( /obj/structure/lattice/catwalk/indoor/grate/dark, /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -112017,28 +112016,6 @@ "ozc" = ( /turf/simulated/floor/tiled/dark, /area/horizon/maintenance/deck_2/research) -"ozg" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/item/radio/intercom/west{ - dir = 2; - pixel_x = 0; - pixel_y = -4 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 7 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/structure/machinery/light/spot, -/obj/structure/machinery/camera/network/command{ - c_tag = "Bridge - XO office"; - dir = 1 - }, -/turf/simulated/floor/wood, -/area/horizon/command/heads/xo) "ozq" = ( /obj/structure/machinery/light/small, /turf/simulated/floor/tiled/dark/full, @@ -112110,19 +112087,19 @@ }, /turf/simulated/floor/tiled, /area/horizon/rnd/hallway/secondary) -"ozD" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +"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 = "1-2" + icon_state = "4-8" }, -/obj/structure/machinery/door/firedoor/multi_tile, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/industrial/hatch_door/service{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/service/mess_hall) +/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, @@ -113040,6 +113017,27 @@ icon_state = "wood" }, /area/centcom/control) +"oFY" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/structure/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/mess_hall) "oGc" = ( /obj/effect/floor_decal/corner_wide/yellow{ dir = 6 @@ -113059,17 +113057,6 @@ /obj/structure/machinery/hologram/holopad, /turf/simulated/floor/tiled, /area/horizon/service/hydroponics) -"oGe" = ( -/obj/structure/machinery/power/apc/north, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 9 - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/structure/bed/stool/chair/sofa/right/beige, -/turf/simulated/floor/wood, -/area/horizon/service/mess_hall) "oGg" = ( /obj/effect/floor_decal/industrial/warning{ dir = 10 @@ -113227,13 +113214,6 @@ /obj/structure/curtain/open/shower, /turf/simulated/floor/tiled/freezer, /area/horizon/security/washroom) -"oHj" = ( -/obj/structure/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch_door/service{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/hallway/primary/deck_2/fore) "oHl" = ( /obj/structure/machinery/light/small{ dir = 4 @@ -114000,25 +113980,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/hangar/intrepid) -"oLO" = ( -/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) "oLV" = ( /obj/structure/railing/mapped, /obj/structure/morgue, @@ -114889,6 +114850,15 @@ /obj/structure/machinery/light_switch/west, /turf/simulated/floor/carpet/rubber, /area/horizon/engineering/reactor/indra/monitoring) +"oRN" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/obj/structure/bed/stool/chair/padded/black{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/horizon/service/mess_hall) "oRO" = ( /obj/structure/machinery/atmospherics/unary/vent_pump/on, /obj/effect/floor_decal/spline/fancy/wood{ @@ -116288,6 +116258,11 @@ }, /turf/simulated/floor/tiled, /area/horizon/crew/fitness/changing) +"pam" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/item/hullbeacon/red, +/turf/simulated/floor/reinforced/airless, +/area/horizon/exterior) "pan" = ( /obj/structure/machinery/light/small{ dir = 4 @@ -116330,6 +116305,29 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/security/checkpoint2) +"pay" = ( +/obj/structure/table/stone/marble, +/obj/item/reagent_containers/food/drinks/shaker{ + pixel_x = 9; + pixel_y = 15 + }, +/obj/item/reagent_containers/food/drinks/shaker{ + pixel_x = 9; + pixel_y = 5 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/item/reagent_containers/glass/rag/advanced{ + pixel_x = -6; + pixel_y = 10 + }, +/obj/item/reagent_containers/glass/rag/advanced{ + pixel_x = -4; + pixel_y = -1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/bar) "paz" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -116337,6 +116335,23 @@ /obj/structure/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/storage_hard/aft) +"paF" = ( +/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 = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/machinery/hologram/holopad, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/service/mess_hall) "paI" = ( /obj/structure/disposalpipe/junction{ dir = 1 @@ -116719,6 +116734,19 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/rnd/xenoarch/atrium) +"pdy" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/machinery/power/terminal, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/canary) "pdB" = ( /obj/structure/cable{ icon_state = "1-2" @@ -117112,6 +117140,19 @@ }, /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"; @@ -117520,13 +117561,6 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/command/bridge/upperdeck) -"pis" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/engineering/storage_hard/lower) "piy" = ( /obj/structure/cable{ icon_state = "1-2" @@ -118624,6 +118658,13 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/storage/eva) +"pqW" = ( +/obj/effect/floor_decal/corner/brown, +/obj/structure/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/intrepid/port_compartment) "prd" = ( /obj/structure/railing/mapped{ dir = 8 @@ -119105,6 +119146,18 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/operations/machinist) +"pun" = ( +/obj/structure/bed/handrail{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 8 + }, +/obj/structure/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/intrepid/starboard_compartment) "puo" = ( /obj/structure/bed/stool/chair/shuttle, /obj/structure/extinguisher_cabinet/west{ @@ -119301,26 +119354,6 @@ /obj/effect/floor_decal/industrial/loading/engineering, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/bluespace_drive) -"pvE" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 1; - sortType = "Bar" - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/horizon/service/bar) "pvH" = ( /obj/structure/machinery/hologram/holopad, /obj/effect/overmap/visitable/ship/sccv_horizon, @@ -119417,6 +119450,19 @@ }, /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{ @@ -119424,6 +119470,19 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/wing/starboard/far) +"pwt" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/firedoor, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/hatch_door/service{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/hallway/primary/deck_2/fore) "pwv" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -119547,21 +119606,6 @@ /obj/structure/lattice/catwalk/indoor, /turf/simulated/floor/plating, /area/horizon/maintenance/substation/operations) -"pxs" = ( -/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" - }, -/turf/simulated/floor/tiled, -/area/horizon/operations/machinist) "pxu" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 @@ -119610,6 +119654,17 @@ /obj/effect/floor_decal/corner/dark_blue, /turf/simulated/floor/tiled, /area/horizon/command/bridge/upperdeck) +"pxA" = ( +/obj/structure/bed/stool/chair{ + name = "uncomfortable chair"; + dir = 8 + }, +/obj/effect/floor_decal/corner/red/full{ + dir = 1 + }, +/obj/structure/machinery/firealarm/north, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/interrogation_2) "pxB" = ( /obj/effect/floor_decal/industrial/warning{ dir = 9 @@ -119816,6 +119871,19 @@ }, /turf/simulated/floor/plating, /area/horizon/engineering/atmos/turbine) +"pyL" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/horizon/service/mess_hall) "pyM" = ( /obj/structure/machinery/light/small, /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -119936,6 +120004,15 @@ }, /turf/simulated/open/airless, /area/horizon/exterior) +"pzF" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/mess_hall) "pzG" = ( /obj/structure/bed/stool/chair/padded/blue{ dir = 8 @@ -120302,6 +120379,19 @@ "pBR" = ( /turf/unsimulated/floor/wood, /area/centcom/evac) +"pBS" = ( +/obj/structure/machinery/atmospherics/pipe/simple/hidden/yellow, +/obj/effect/floor_decal/corner/yellow/full{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/machinery/light/floor{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/stairwell/engineering/deck_1) "pBT" = ( /obj/structure/machinery/computer/telescience{ starting_crystals = 4 @@ -120403,6 +120493,27 @@ /obj/structure/machinery/door/firedoor, /turf/simulated/floor/tiled/dark/full, /area/horizon/rnd/xenobiology/xenoflora) +"pCx" = ( +/obj/structure/disposalpipe/segment{ + 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/platform_stairs/full{ + dir = 8 + }, +/obj/structure/platform{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/mess_hall) "pCA" = ( /obj/structure/machinery/vending/zora, /obj/structure/machinery/light{ @@ -121263,13 +121374,6 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/horizon/engineering/hallway/fore) -"pIS" = ( -/obj/structure/table/wood, -/obj/structure/machinery/recharger{ - pixel_y = 3 - }, -/turf/simulated/floor/lino/diamond, -/area/horizon/service/mess_hall) "pIV" = ( /obj/effect/floor_decal/industrial/outline/grey, /obj/structure/closet/secure_closet/evidence{ @@ -122782,26 +122886,6 @@ /obj/structure/window/reinforced/holowindow, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_gym) -"pTk" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/yellow, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/horizon/stairwell/engineering/deck_1) "pTo" = ( /obj/structure/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -123673,13 +123757,6 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/rnd/xenological) -"pZo" = ( -/obj/structure/platform/cutout{ - dir = 8 - }, -/obj/structure/platform_stairs/full/east_west_cap, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/service/mess_hall) "pZs" = ( /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/atmos/turbine) @@ -124106,6 +124183,15 @@ /obj/structure/machinery/atmospherics/pipe/manifold/visible/black, /turf/simulated/floor/tiled/dark, /area/horizon/engineering/reactor/supermatter/waste) +"qcR" = ( +/obj/structure/table/rack, +/obj/random/loot, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard) "qcT" = ( /obj/structure/machinery/door/blast/regular{ id = "iso_b_purge"; @@ -124311,16 +124397,6 @@ /obj/effect/map_effect/marker_helper/airlock/exterior, /turf/simulated/floor/tiled/dark/full, /area/horizon/maintenance/deck_1/auxatmos) -"qel" = ( -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 8 - }, -/obj/structure/machinery/light/small/floor, -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/horizon/service/mess_hall) "qem" = ( /obj/structure/machinery/door/firedoor, /obj/structure/machinery/door/airlock/maintenance_hatch{ @@ -124469,6 +124545,27 @@ }, /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 + }, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/meeting_room) "qfa" = ( /obj/structure/cable, /obj/structure/machinery/power/apc/low/south, @@ -124748,6 +124845,21 @@ }, /turf/simulated/floor/reinforced/airmix, /area/horizon/engineering/atmos/air) +"qgO" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/horizon/service/mess_hall) "qgS" = ( /obj/structure/machinery/door/blast/shutters{ density = 0; @@ -124826,13 +124938,6 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor, /area/horizon/maintenance/deck_3/aft/port) -"qhx" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/item/hullbeacon/red, -/turf/simulated/floor/reinforced/airless, -/area/horizon/exterior) "qhy" = ( /obj/structure/sign/securearea, /turf/simulated/wall/shuttle/scc_space_ship/cardinal, @@ -125505,19 +125610,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/engineering/break_room) -"qmh" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/machinery/light_switch{ - dir = 1; - pixel_y = 28 - }, -/turf/simulated/floor/wood, -/area/horizon/command/bridge/meeting_room) "qmm" = ( /obj/item/flashlight/flare, /obj/item/flashlight/flare, @@ -125658,15 +125750,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/operations/commissary) -"qnh" = ( -/obj/structure/platform_deco{ - dir = 8 - }, -/obj/effect/floor_decal/spline/plain/green{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/service/mess_hall) "qnj" = ( /obj/effect/floor_decal/spline/plain{ dir = 4 @@ -125968,6 +126051,16 @@ /obj/random/maintenance_junk_or_loot, /turf/simulated/floor/tiled/dark/full, /area/horizon/maintenance/deck_3/security/port) +"qph" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/obj/structure/machinery/atm{ + dir = 1; + pixel_y = 28 + }, +/turf/simulated/floor/wood, +/area/horizon/service/mess_hall) "qpr" = ( /obj/structure/closet/secure_closet/guncabinet{ name = "Heavy Asset Protection"; @@ -126042,6 +126135,20 @@ }, /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'; @@ -126735,6 +126842,18 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/storage/lower) +"quL" = ( +/obj/effect/floor_decal/corner/red/full, +/obj/structure/reagent_dispensers/water_cooler, +/obj/structure/machinery/alarm/west, +/obj/structure/machinery/camera/network/security{ + c_tag = "Security - Interrogation B"; + name = "interrogation"; + network = list("Interrogation"); + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/interrogation_1) "quS" = ( /obj/effect/floor_decal/industrial/warning, /obj/effect/map_effect/map_helper/ruler_tiles_3{ @@ -126865,14 +126984,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/storage_hard/upper) -"qvz" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/horizon/operations/machinist) "qvA" = ( /obj/structure/table/steel, /obj/random/tech_supply, @@ -128077,6 +128188,26 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/rnd/xenoarch/hallway/hangar) +"qEs" = ( +/obj/structure/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 5 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/bed/handrail{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/structure/machinery/power/apc/shuttle/east, +/obj/structure/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/intrepid/starboard_compartment) "qEv" = ( /obj/structure/machinery/atmospherics/unary/vent_pump/on, /obj/effect/floor_decal/spline/plain/lime{ @@ -129040,6 +129171,24 @@ }, /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 @@ -129048,6 +129197,19 @@ /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{ @@ -129674,6 +129836,13 @@ }, /turf/simulated/floor/wood/yew, /area/centcom/shared_dream) +"qNO" = ( +/obj/effect/floor_decal/corner/lime/diagonal, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/crew/washroom/deck_2) "qNV" = ( /obj/structure/cable{ icon_state = "4-8" @@ -130770,6 +130939,15 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/hallway/primary/deck_2/central) +"qVG" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/structure/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/stairwell/starboard/deck_1) "qVQ" = ( /obj/structure/window/shuttle/unique/scc/scout{ icon_state = "5,4" @@ -130909,6 +131087,21 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/medical/surgery) +"qWG" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/horizon/service/mess_hall) "qWI" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -131427,6 +131620,23 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/medical/gen_treatment) +"qZL" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 10 + }, +/obj/structure/sign/directions/prop{ + dir = 8; + pixel_y = -22 + }, +/obj/structure/sign/directions/prop{ + pixel_y = -28 + }, +/obj/structure/machinery/atmospherics/unary/vent_pump/on{ + dir = 1; + level = 2 + }, +/turf/simulated/floor/tiled, +/area/horizon/stairwell/engineering/deck_1) "qZQ" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -131848,29 +132058,6 @@ /obj/effect/floor_decal/industrial/outline/grey, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/evidence_storage) -"rdo" = ( -/obj/structure/table/stone/marble, -/obj/item/reagent_containers/food/drinks/shaker{ - pixel_x = 9; - pixel_y = 15 - }, -/obj/item/reagent_containers/food/drinks/shaker{ - pixel_x = 9; - pixel_y = 5 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/item/reagent_containers/glass/rag/advanced{ - pixel_x = -6; - pixel_y = 10 - }, -/obj/item/reagent_containers/glass/rag/advanced{ - pixel_x = -4; - pixel_y = -1 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/service/bar) "rdq" = ( /obj/structure/grille, /obj/structure/window/shuttle/scc_space_ship/cardinal, @@ -132036,6 +132223,12 @@ }, /turf/simulated/floor/wood, /area/horizon/rnd/xenoarch/presentation) +"req" = ( +/obj/structure/bed/stool/chair/wood{ + dir = 4 + }, +/turf/simulated/floor/lino/diamond, +/area/horizon/service/mess_hall) "rer" = ( /obj/structure/grille/broken, /obj/structure/machinery/light/small{ @@ -132103,14 +132296,6 @@ }, /turf/simulated/floor/wood, /area/horizon/command/bridge/meeting_room) -"reI" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/effect/floor_decal/spline/plain/green, -/obj/structure/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/crew/washroom/deck_2) "reJ" = ( /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, @@ -132238,17 +132423,6 @@ /obj/structure/lattice/catwalk/indoor, /turf/simulated/floor/plating, /area/horizon/engineering/reactor/indra/mainchamber) -"rfy" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/machinery/light, -/obj/effect/floor_decal/corner/yellow/diagonal, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/horizon/stairwell/engineering/deck_2) "rfz" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 10 @@ -132384,6 +132558,24 @@ }, /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" @@ -134344,16 +134536,6 @@ name = "shallow water" }, /area/horizon/holodeck/source_konyang) -"rty" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 9 - }, -/obj/structure/machinery/atm{ - dir = 1; - pixel_y = 28 - }, -/turf/simulated/floor/wood, -/area/horizon/service/mess_hall) "rtA" = ( /obj/item/flag/scc/l{ pixel_y = 15 @@ -135251,18 +135433,6 @@ }, /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/horizon/maintenance/deck_2/wing/starboard) -"rzs" = ( -/obj/structure/machinery/alarm/west{ - dir = 2; - pixel_x = 0; - pixel_y = -10 - }, -/obj/structure/bed/stool/chair{ - dir = 1 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/horizon/operations/machinist) "rzx" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -135289,28 +135459,6 @@ /obj/effect/floor_decal/corner/dark_green/full, /turf/simulated/floor/tiled, /area/horizon/hallway/primary/deck_3/starboard) -"rzJ" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/machinery/power/terminal, -/obj/structure/table/rack, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/machinery/light/colored/blue{ - dir = 8 - }, -/obj/structure/machinery/door/window/eastright, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/shuttle/canary) "rzL" = ( /obj/effect/floor_decal/industrial/warning/corner, /obj/effect/floor_decal/industrial/warning/corner{ @@ -135701,6 +135849,20 @@ }, /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 @@ -136080,18 +136242,6 @@ }, /turf/simulated/floor/exoplanet/grass, /area/centcom/shared_dream) -"rFh" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/service/mess_hall) "rFi" = ( /obj/structure/table/wood, /obj/item/reagent_containers/food/condiment/shaker/salt{ @@ -136441,6 +136591,15 @@ }, /turf/simulated/floor/tiled, /area/horizon/command/bridge/bridge_crew) +"rHq" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/obj/structure/platform_deco{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/mess_hall) "rHr" = ( /obj/structure/machinery/door/airlock/glass_research{ dir = 4; @@ -136982,19 +137141,6 @@ dir = 1 }, /area/centcom/legion) -"rLo" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 7 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/firealarm/north, -/turf/simulated/floor/wood, -/area/horizon/command/bridge/meeting_room) "rLs" = ( /obj/structure/bed/stool/chair/office/dark{ dir = 8 @@ -137075,6 +137221,13 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/engineering/washroom) +"rLU" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/structure/machinery/alarm/south, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) "rLV" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden, /obj/structure/machinery/door/airlock/external, @@ -137380,6 +137533,18 @@ }, /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 @@ -137516,6 +137681,14 @@ }, /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, @@ -138022,6 +138195,29 @@ /obj/effect/step_trigger/thrower/shuttle/north, /turf/space/transit/east, /area/template_noop) +"rRb" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/obj/structure/sign/directions/service{ + pixel_x = -33; + pixel_y = 3 + }, +/obj/structure/sign/directions/all{ + dir = 1; + pixel_y = 9; + pixel_x = -33 + }, +/obj/structure/sign/directions/custodial{ + pixel_x = -33; + pixel_y = -3; + dir = 1 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/hallway/primary/deck_2/fore) "rRg" = ( /obj/structure/cable/green{ icon_state = "2-4" @@ -138211,6 +138407,19 @@ }, /turf/simulated/floor, /area/horizon/ai/chamber) +"rSm" = ( +/obj/structure/bed/stool/chair/office/dark{ + dir = 8 + }, +/obj/structure/machinery/camera/network/service{ + c_tag = "Service - Mess Hall 1"; + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/turf/simulated/floor/wood, +/area/horizon/service/mess_hall) "rSo" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -138353,6 +138562,29 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/wing/starboard/far) +"rTc" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/item/radio/intercom/north, +/obj/structure/machinery/power/outlet{ + pixel_y = 3 + }, +/obj/item/flame/candle{ + pixel_x = 9; + pixel_y = 2 + }, +/obj/item/reagent_containers/food/condiment/shaker/peppermill{ + pixel_x = 2; + pixel_y = 12 + }, +/obj/item/reagent_containers/food/condiment/shaker/salt{ + pixel_y = 12; + pixel_x = -3 + }, +/obj/structure/table/wood/gamblingtable, +/turf/simulated/floor/wood, +/area/horizon/service/mess_hall) "rTf" = ( /obj/structure/machinery/door/airlock/glass_command{ dir = 1; @@ -138901,6 +139133,10 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/hangar/auxiliary) +"rWt" = ( +/obj/structure/machinery/hologram/holopad/long_range, +/turf/simulated/floor/lino/diamond, +/area/horizon/service/mess_hall) "rWv" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 10 @@ -139020,28 +139256,6 @@ /obj/structure/machinery/photocopier, /turf/simulated/floor/carpet, /area/horizon/repoffice/representative_two) -"rWU" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/full, -/area/horizon/stairwell/engineering/deck_2) "rXm" = ( /obj/structure/lattice/catwalk/indoor/grate/dark, /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -139444,6 +139658,18 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/rnd/chemistry) +"sac" = ( +/obj/effect/floor_decal/corner/dark_green/full, +/obj/effect/floor_decal/industrial/outline_straight/service, +/obj/effect/floor_decal/industrial/arrow/service, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/mess_hall) "sae" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -139523,6 +139749,15 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/rnd/xenological) +"saM" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 7 + }, +/obj/structure/bed/stool/chair/padded/black{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/horizon/service/mess_hall) "saR" = ( /obj/structure/machinery/light{ dir = 1 @@ -139690,15 +139925,6 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_3/security/starboard) -"scd" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/bed/stool/chair/padded/black{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/horizon/service/mess_hall) "scr" = ( /obj/structure/cable{ icon_state = "4-8" @@ -140315,15 +140541,6 @@ }, /turf/simulated/floor/plating, /area/horizon/shuttle/intrepid/main_compartment) -"sgq" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/structure/cable/green, -/obj/structure/machinery/power/apc/south, -/obj/effect/floor_decal/spline/plain/green{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/crew/washroom/deck_2) "sgr" = ( /obj/structure/machinery/door/firedoor{ req_one_access = list(24,11,67,73) @@ -141163,13 +141380,6 @@ /obj/structure/railing/mapped, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/bluespace_drive) -"skA" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/item/hullbeacon/red, -/turf/simulated/floor/reinforced/airless, -/area/horizon/exterior) "skC" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, @@ -141831,6 +142041,15 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/plating, /area/horizon/engineering/bluespace_drive) +"sop" = ( +/obj/effect/floor_decal/corner/dark_green/diagonal, +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/machinery/alarm/east, +/turf/simulated/floor/tiled, +/area/horizon/stairwell/starboard/deck_1) "sor" = ( /obj/effect/floor_decal/corner_wide/yellow{ dir = 8 @@ -142030,10 +142249,6 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/security/autopsy_laboratory) -"sqF" = ( -/obj/structure/sign/floor_plaque/horizon/service, -/turf/simulated/floor/lino/diamond, -/area/horizon/service/mess_hall) "sqM" = ( /obj/random/dirt_75, /obj/effect/floor_decal/industrial/warning{ @@ -142048,6 +142263,16 @@ }, /turf/simulated/floor/shuttle/black, /area/shuttle/hapt) +"sqR" = ( +/obj/structure/machinery/orderterminal{ + dir = 1; + pixel_y = 29 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/turf/simulated/floor/wood, +/area/horizon/service/mess_hall) "sqS" = ( /obj/effect/floor_decal/corner/brown{ dir = 1 @@ -142250,6 +142475,23 @@ /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/cable/green{ + icon_state = "1-2" + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +/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 @@ -142818,14 +143060,6 @@ /obj/random/dirt_75, /turf/simulated/floor/tiled/dark, /area/horizon/maintenance/deck_2/wing/port/nacelle) -"swj" = ( -/obj/structure/table/rack, -/obj/random/melee, -/obj/item/stack/material/steel/full, -/obj/item/crowbar/rescue_axe/tactical, -/obj/item/crowbar/rescue_axe/tactical, -/turf/simulated/floor/plating, -/area/shuttle/skipjack) "swk" = ( /obj/structure/machinery/atmospherics/pipe/manifold/visible, /obj/structure/lattice/catwalk/indoor/grate/dark, @@ -143267,6 +143501,17 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/maintenance/deck_3/cafe) +"syE" = ( +/obj/structure/machinery/camera/network/third_deck{ + c_tag = "Third Deck - Investigator Entrance"; + dir = 1 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/structure/machinery/firealarm/south, +/turf/simulated/floor/tiled, +/area/horizon/stairwell/port/deck_3) "syK" = ( /obj/effect/landmark/entry_point/starboard{ name = "starboard, atmospherics" @@ -143440,18 +143685,6 @@ }, /turf/simulated/floor/carpet/rubber, /area/horizon/tcommsat/entrance) -"szD" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/machinery/light/floor{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/service/mess_hall) "szF" = ( /obj/effect/floor_decal/corner/dark_blue/full{ dir = 1 @@ -144830,11 +145063,6 @@ /obj/random/dirt_75, /turf/simulated/floor/tiled, /area/horizon/maintenance/deck_2/wing/port/nacelle) -"sIs" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/obj/structure/closet/secure_closet/psychiatric, -/turf/simulated/floor/wood, -/area/horizon/medical/psych) "sIA" = ( /obj/effect/floor_decal/industrial/warning{ dir = 5 @@ -146257,27 +146485,6 @@ "sRN" = ( /turf/simulated/floor/tiled/dark, /area/horizon/rnd/xenobiology) -"sRU" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/machinery/firealarm/south, -/obj/effect/floor_decal/corner/yellow/diagonal, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/horizon/stairwell/engineering/deck_2) "sRV" = ( /obj/structure/bed/padded, /obj/item/bedsheet/black, @@ -146830,24 +147037,6 @@ }, /turf/simulated/floor/plating, /area/horizon/command/bridge/meeting_room) -"sWI" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/railing/mapped, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/lattice/catwalk/indoor/grate/light, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/horizon/operations/machinist/surgicalbay) "sWK" = ( /obj/item/modular_computer/console/preset/security/investigations, /obj/structure/machinery/button/switch/windowtint{ @@ -147121,6 +147310,22 @@ }, /turf/unsimulated/floor, /area/centcom/bar) +"sYt" = ( +/obj/effect/floor_decal/corner/lime/diagonal, +/obj/structure/mirror{ + pixel_y = 36 + }, +/obj/structure/sink{ + pixel_y = 22 + }, +/obj/effect/floor_decal/spline/plain/corner{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/crew/washroom/deck_2) "sYx" = ( /obj/structure/machinery/light/small{ dir = 1 @@ -147307,20 +147512,6 @@ }, /turf/simulated/floor/carpet/art, /area/horizon/crew/lounge) -"sZs" = ( -/obj/structure/sign/flag/scc{ - pixel_y = 32 - }, -/obj/structure/machinery/appliance/cooker/microwave{ - pixel_y = 12; - pixel_x = -1 - }, -/obj/structure/table/wood, -/obj/item/reagent_containers/glass/rag{ - pixel_x = -3 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/service/mess_hall) "sZv" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -147340,19 +147531,6 @@ }, /turf/simulated/floor/plating, /area/horizon/hallway/primary/deck_3/port/docks) -"sZB" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/effect/floor_decal/spline/plain/corner/green{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/crew/washroom/deck_2) "sZF" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 4 @@ -147499,15 +147677,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/hallway/primary/deck_2/central) -"taL" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 7 - }, -/obj/structure/bed/stool/chair/padded/black{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/horizon/service/mess_hall) "taM" = ( /obj/structure/bed/stool/chair/office/light, /obj/structure/machinery/atmospherics/unary/vent_pump/on{ @@ -147515,15 +147684,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/engineering/drone_fabrication) -"taQ" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/structure/sign/emergency/evacuation{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/horizon/stairwell/starboard/deck_1) "taS" = ( /obj/effect/floor_decal/corner{ dir = 9 @@ -147575,6 +147735,16 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/rnd/xenobiology/xenoflora) +"tby" = ( +/obj/effect/floor_decal/corner/lime/diagonal, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/crew/washroom/deck_2) "tbF" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -147677,6 +147847,21 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/maintenance/deck_3/aft/holodeck) +"tco" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 7 + }, +/obj/structure/machinery/power/apc/north{ + is_critical = 1 + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/meeting_room) "tcr" = ( /obj/structure/tank_wall/oxygen{ density = 0; @@ -148334,6 +148519,17 @@ "tgx" = ( /turf/simulated/floor/holofloor/lino, /area/horizon/holodeck/source_theatre) +"tgE" = ( +/obj/structure/bed/stool/bar/padded/red, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/turf/simulated/floor/lino/diamond, +/area/horizon/service/mess_hall) "tgG" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/closet/secure_closet/engineering_personal, @@ -148733,14 +148929,6 @@ }, /turf/simulated/floor/airless, /area/horizon/engineering/atmos) -"tjg" = ( -/obj/structure/toilet{ - dir = 1; - pixel_y = -1 - }, -/obj/effect/floor_decal/corner/green/diagonal, -/turf/simulated/floor/tiled/white, -/area/horizon/engineering/washroom) "tjj" = ( /obj/structure/shuttle_part/scc/scout{ icon_state = "1,10" @@ -148782,52 +148970,12 @@ }, /turf/simulated/floor/wood, /area/horizon/crew/lounge) -"tjA" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/spline/plain/green{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/obj/effect/landmark/start{ - name = "Chef" - }, -/turf/simulated/floor/tiled/white, -/area/horizon/service/kitchen) "tjE" = ( /obj/structure/shuttle_part/tcfl{ icon_state = "0,5" }, /turf/unsimulated/floor/plating, /area/shuttle/legion) -"tjG" = ( -/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/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 8 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 8 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/horizon/stairwell/engineering/deck_1) "tjP" = ( /obj/structure/table/wood, /obj/item/flame/candle, @@ -149028,19 +149176,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/tcommsat/entrance) -"tkX" = ( -/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) "tkY" = ( /obj/effect/decal/cleanable/dirt, /obj/random/maintenance_junk_or_loot, @@ -149843,15 +149978,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/shuttle/mercenary) -"tqe" = ( -/obj/effect/floor_decal/corner_wide/brown{ - dir = 5 - }, -/obj/structure/machinery/light/small/floor{ - pixel_y = -16 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/operations/machinist/surgicalbay) "tqg" = ( /obj/structure/table/reinforced/steel, /obj/item/paper_bin{ @@ -150395,27 +150521,6 @@ /obj/effect/floor_decal/industrial/hatch_tiny/yellow, /turf/simulated/floor/tiled/dark, /area/horizon/rnd/xenobiology/xenoflora) -"tta" = ( -/obj/structure/disposalpipe/segment{ - 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/platform_stairs/full{ - dir = 8 - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/service/mess_hall) "ttm" = ( /obj/effect/decal/remains/rat, /obj/structure/lattice/catwalk/indoor/grate/dark, @@ -150604,14 +150709,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/engineering/hallway/interior) -"tuO" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/effect/floor_decal/spline/plain/corner/green, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/crew/washroom/deck_2) "tuP" = ( /obj/effect/floor_decal/corner_wide/yellow{ dir = 5 @@ -151218,15 +151315,6 @@ }, /turf/simulated/floor/carpet, /area/horizon/repoffice/consular_one) -"tyq" = ( -/obj/effect/floor_decal/industrial/hatch/service, -/obj/structure/machinery/vending/mredispenser, -/obj/structure/machinery/camera/network/service{ - c_tag = "Service - Mess Hallway"; - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/hallway/primary/deck_2/fore) "tyt" = ( /obj/effect/floor_decal/industrial/warning{ dir = 6 @@ -151310,14 +151398,18 @@ }, /turf/simulated/floor/exoplanet/grass/grove, /area/centcom/shared_dream) -"tyS" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/obj/structure/sign/nosmoking_1{ - pixel_y = -32 +"tyJ" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 }, -/obj/structure/machinery/light, -/turf/simulated/floor/tiled/white, -/area/horizon/engineering/washroom) +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/mess_hall) "tyT" = ( /obj/structure/machinery/light{ dir = 4 @@ -152008,6 +152100,14 @@ "tDL" = ( /turf/simulated/floor/tiled/dark, /area/horizon/maintenance/deck_2/wing/starboard) +"tDQ" = ( +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 4 + }, +/obj/structure/bed/stool/chair, +/obj/item/radio/intercom/interrogation/east, +/turf/simulated/floor/tiled, +/area/horizon/security/interrogation/monitoring) "tDR" = ( /obj/effect/floor_decal/corner_wide/yellow{ dir = 9 @@ -152305,21 +152405,6 @@ }, /turf/simulated/floor/wood, /area/horizon/command/heads/om) -"tFD" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/turf/simulated/floor/wood, -/area/horizon/service/mess_hall) "tFF" = ( /obj/structure/window/reinforced/crescent{ dir = 1 @@ -152711,6 +152796,16 @@ /obj/structure/table/reinforced/steel, /turf/unsimulated/floor/plating, /area/centcom/specops) +"tHD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/structure/machinery/light/small/floor, +/turf/simulated/floor/lino/diamond, +/area/horizon/service/mess_hall) "tHL" = ( /obj/structure/machinery/mass_driver{ _wifi_id = "waste"; @@ -153203,6 +153298,23 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/medical/equipment) +"tKR" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/yellow, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/stairwell/engineering/deck_1) "tKS" = ( /obj/structure/lattice/catwalk/indoor/grate/dark, /obj/structure/railing/mapped, @@ -153555,29 +153667,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/ai/upload) -"tOl" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/obj/structure/sign/directions/service{ - pixel_x = -33; - pixel_y = 3 - }, -/obj/structure/sign/directions/all{ - dir = 1; - pixel_y = 9; - pixel_x = -33 - }, -/obj/structure/sign/directions/custodial{ - pixel_x = -33; - pixel_y = -3; - dir = 1 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/hallway/primary/deck_2/fore) "tOp" = ( /obj/structure/railing/mapped{ dir = 4 @@ -153782,12 +153871,6 @@ }, /turf/simulated/open, /area/horizon/operations/office) -"tPL" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/service/mess_hall) "tPN" = ( /obj/structure/machinery/camera/network/research{ c_tag = "Research - Xenobio Fore"; @@ -153835,20 +153918,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/command/bridge/aibunker) -"tPY" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/sortjunction/flipped{ - sortType = "Hydroponics" - }, -/obj/structure/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/service/mess_hall) "tQl" = ( /turf/simulated/wall/shuttle/unique/tcfl{ icon_state = "1,5" @@ -154035,6 +154104,10 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/mercenary) +"tRw" = ( +/obj/structure/sign/floor_plaque/horizon/service, +/turf/simulated/floor/lino/diamond, +/area/horizon/service/mess_hall) "tRx" = ( /obj/structure/cable{ icon_state = "1-2" @@ -154286,13 +154359,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/operations/office) -"tTL" = ( -/obj/structure/sign/radshield{ - dir = 8; - pixel_y = -3 - }, -/turf/simulated/wall, -/area/horizon/crew/washroom/deck_2) "tTQ" = ( /obj/structure/machinery/button/remote/blast_door{ dir = 1; @@ -154405,18 +154471,6 @@ }, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_lasertag) -"tUO" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/railing/mapped, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/dark, -/area/horizon/maintenance/deck_2/service/starboard) "tUS" = ( /obj/effect/floor_decal/industrial/warning, /obj/random/dirt_75, @@ -154508,6 +154562,18 @@ }, /turf/simulated/wall, /area/horizon/maintenance/deck_2/wing/port/far) +"tVw" = ( +/obj/structure/machinery/alarm/south, +/obj/structure/machinery/computer/ship/navigation/terminal{ + dir = 4 + }, +/obj/structure/machinery/holosign/service/bar{ + id = "bar"; + pixel_y = -32 + }, +/obj/effect/floor_decal/industrial/outline/service, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/mess_hall) "tVA" = ( /turf/simulated/floor/reinforced, /area/horizon/weapons/grauwolf) @@ -154788,23 +154854,6 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/operations/starboard/amidships) -"tXu" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/obj/structure/table/wood, -/obj/item/reagent_containers/food/condiment/shaker/salt{ - pixel_y = 5; - pixel_x = 7 - }, -/obj/item/reagent_containers/food/condiment/shaker/peppermill{ - pixel_x = 2; - pixel_y = 5 - }, -/obj/item/flame/candle{ - pixel_x = -6; - pixel_y = 9 - }, -/turf/simulated/floor/lino/diamond, -/area/horizon/service/mess_hall) "tXw" = ( /obj/structure/machinery/door/airlock/centcom{ name = "Auxillary Cryogenics" @@ -154982,21 +155031,6 @@ /obj/structure/flora/ausbushes/brflowers, /turf/simulated/floor/holofloor/grass, /area/horizon/holodeck/source_wildlife) -"tYU" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/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 - }, -/turf/simulated/floor/wood, -/area/horizon/service/mess_hall) "tZa" = ( /obj/structure/cable/green{ icon_state = "0-8" @@ -155905,21 +155939,6 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/shuttle/merchant) -"ufr" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/horizon/service/bar) "ufs" = ( /obj/effect/floor_decal/industrial/hatch_door/yellow{ dir = 8 @@ -155991,6 +156010,19 @@ }, /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{ @@ -156135,6 +156167,16 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/hangar/port) +"uhb" = ( +/obj/structure/machinery/power/apc/critical/west, +/obj/structure/railing/mapped, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/cable/green, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/service/starboard) "uhd" = ( /obj/effect/floor_decal/corner/white/diagonal, /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -156153,6 +156195,12 @@ /obj/item/radio/intercom/east, /turf/simulated/floor/tiled, /area/horizon/medical/paramedic) +"uhe" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/mess_hall) "uhj" = ( /obj/structure/grille, /obj/structure/window/shuttle/scc_space_ship, @@ -156580,15 +156628,6 @@ /obj/structure/window/shuttle/scc_space_ship/cardinal, /turf/simulated/floor/plating, /area/shuttle/merchant) -"ujx" = ( -/obj/effect/floor_decal/industrial/hatch/service, -/obj/structure/machinery/computer/arcade, -/obj/structure/sign/poster/lore/tcaf{ - pixel_y = 30; - pixel_x = 6 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/service/bar) "ujy" = ( /obj/structure/disposalpipe/segment, /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -156620,16 +156659,6 @@ }, /turf/simulated/floor/wood, /area/horizon/rnd/conference) -"ujD" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/large_stock_marker, -/obj/structure/machinery/firealarm/south{ - dir = 4; - pixel_x = 22; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/gunmetal, -/area/horizon/operations/warehouse) "ujE" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 10 @@ -157314,17 +157343,6 @@ }, /turf/simulated/floor/exoplanet/barren, /area/centcom/shared_dream) -"uou" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/outline_straight/service, -/obj/effect/floor_decal/industrial/arrow/service, -/obj/structure/platform{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/service/mess_hall) "uoy" = ( /obj/item/tape/engineering{ icon_state = "engineering_door" @@ -157633,15 +157651,40 @@ }, /turf/unsimulated/floor, /area/centcom/holding) -"uqm" = ( -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ +"uqq" = ( +/obj/structure/platform{ dir = 8 }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/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) @@ -157832,6 +157875,26 @@ /obj/structure/machinery/meter, /turf/simulated/floor/tiled/dark, /area/horizon/engineering/atmos/propulsion/starboard) +"urn" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/light/small/floor, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/wood, +/area/horizon/service/bar) "urx" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 8 @@ -158088,12 +158151,6 @@ }, /turf/simulated/floor, /area/horizon/maintenance/deck_3/auxatmos) -"usT" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/effect/floor_decal/spline/plain/green, -/obj/structure/machinery/light/small/floor, -/turf/simulated/floor/tiled/white, -/area/horizon/crew/washroom/deck_2) "uta" = ( /obj/effect/floor_decal/industrial/warning{ dir = 10 @@ -160300,27 +160357,6 @@ /obj/structure/table/reinforced/steel, /turf/simulated/floor/carpet/rubber, /area/horizon/command/bridge/controlroom) -"uHm" = ( -/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) "uHq" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -161430,6 +161466,15 @@ /obj/structure/machinery/atmospherics/unary/freezer, /turf/simulated/floor/tiled/dark/full, /area/horizon/service/hydroponics) +"uOK" = ( +/obj/effect/floor_decal/spline/fancy/wood/cee{ + dir = 4 + }, +/obj/structure/synthesized_instrument/synthesizer/piano{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/horizon/service/bar) "uOM" = ( /obj/effect/floor_decal/corner/red, /obj/effect/floor_decal/corner/red{ @@ -161678,28 +161723,6 @@ }, /turf/simulated/floor/carpet/rubber, /area/horizon/command/bridge/controlroom) -"uQn" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/table/wood, -/obj/item/reagent_containers/food/condiment/shaker/peppermill{ - pixel_x = 5; - pixel_y = 10 - }, -/obj/item/reagent_containers/food/condiment/shaker/salt{ - pixel_y = 10; - pixel_x = 10 - }, -/obj/item/flame/candle{ - pixel_x = -3; - pixel_y = 16 - }, -/obj/structure/machinery/power/outlet{ - pixel_y = 3 - }, -/turf/simulated/floor/wood, -/area/horizon/service/mess_hall) "uQy" = ( /obj/effect/floor_decal/spline/fancy, /obj/structure/machinery/computer/ship/sensors{ @@ -161725,6 +161748,27 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/wing/port/far) +"uQF" = ( +/obj/structure/table/stone/marble, +/obj/item/reagent_containers/glass/bottle/syrup/chocolate{ + pixel_x = -8; + pixel_y = 13 + }, +/obj/item/reagent_containers/glass/bottle/syrup/caramel{ + pixel_x = -2; + pixel_y = 13 + }, +/obj/item/reagent_containers/glass/bottle/syrup/pumpkin{ + pixel_x = 4; + pixel_y = 13 + }, +/obj/item/reagent_containers/glass/bottle/syrup/vanilla{ + pixel_x = 10; + pixel_y = 13 + }, +/obj/item/radio/intercom/north, +/turf/simulated/floor/lino/diamond, +/area/horizon/service/bar) "uQG" = ( /obj/random/dirt_75, /obj/structure/machinery/light/small{ @@ -162749,6 +162793,12 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/maintenance/deck_2/main/starboard) +"uXl" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/structure/closet/secure_closet/psychiatric, +/obj/structure/machinery/firealarm/south, +/turf/simulated/floor/wood, +/area/horizon/medical/psych) "uXo" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -162886,6 +162936,22 @@ /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 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/bed/handrail{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/intrepid/port_compartment) "uXQ" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/effect/floor_decal/industrial/warning/corner, @@ -163020,10 +163086,6 @@ /obj/structure/machinery/light, /turf/simulated/floor/tiled, /area/horizon/maintenance/deck_2/research) -"uZq" = ( -/obj/structure/machinery/hologram/holopad, -/turf/simulated/floor/lino/diamond, -/area/horizon/service/mess_hall) "uZt" = ( /obj/structure/machinery/atmospherics/binary/pump/high_power{ dir = 1; @@ -163198,15 +163260,6 @@ dir = 8 }, /area/horizon/maintenance/deck_2/wing/starboard/near) -"vaU" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/horizon/stairwell/engineering/deck_2) "vaV" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -164055,23 +164108,6 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/hallway/primary/deck_2/central) -"vgj" = ( -/obj/structure/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/railing/mapped, -/obj/structure/lattice/catwalk/indoor/grate/light, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/machinery/light_switch/north{ - pixel_x = -4 - }, -/turf/simulated/floor/plating, -/area/horizon/operations/machinist/surgicalbay) "vgm" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, /obj/effect/floor_decal/corner/dark_blue{ @@ -164127,11 +164163,6 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor, /area/horizon/maintenance/deck_3/crewlounge) -"vgQ" = ( -/obj/structure/table/stone/marble, -/obj/effect/floor_decal/industrial/warning/corner, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/service/bar) "vgT" = ( /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/horizon/operations/machinist/surgicalbay) @@ -164541,26 +164572,6 @@ /obj/structure/machinery/telecomms/broadcaster/preset_right, /turf/simulated/floor/bluegrid, /area/horizon/tcommsat/chamber) -"vkh" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/condiment/shaker/salt{ - pixel_x = -7; - pixel_y = -8 - }, -/obj/item/reagent_containers/food/condiment/shaker/peppermill{ - pixel_x = -1; - pixel_y = -8 - }, -/obj/item/paper_bin{ - pixel_x = 3; - pixel_y = 4 - }, -/obj/item/pen{ - pixel_x = 4; - pixel_y = 5 - }, -/turf/simulated/floor/lino/diamond, -/area/horizon/service/mess_hall) "vkj" = ( /obj/structure/cable{ icon_state = "0-4" @@ -165118,6 +165129,26 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/dark, /area/horizon/weapons/longbow) +"voc" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/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/manifold4w/hidden/scrubbers, +/turf/simulated/floor/tiled/full, +/area/horizon/stairwell/engineering/deck_2) "voe" = ( /obj/structure/ship_weapon_dummy, /turf/simulated/wall/shuttle/unique/scc/scout{ @@ -165910,6 +165941,10 @@ density = 1 }, /area/antag/ninja) +"vuE" = ( +/obj/structure/machinery/vending/dinnerware/bar, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/bar) "vuM" = ( /obj/structure/sign/vacuum{ pixel_y = -32 @@ -166025,6 +166060,13 @@ "vvE" = ( /turf/simulated/wall/r_wall, /area/horizon/weapons/grauwolf) +"vvG" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/obj/structure/platform_deco, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/mess_hall) "vvL" = ( /obj/structure/table/steel, /obj/item/paper_bin, @@ -166803,6 +166845,16 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/reactor/supermatter/airlock) +"vAU" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/wood, +/area/horizon/service/mess_hall) "vAZ" = ( /obj/structure/sink/kitchen{ name = "water fountain"; @@ -167745,18 +167797,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/atmos) -"vHc" = ( -/obj/effect/floor_decal/corner/dark_green/diagonal, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/machinery/alarm/east, -/turf/simulated/floor/tiled, -/area/horizon/stairwell/starboard/deck_1) "vHd" = ( /obj/structure/curtain/open/shower, /obj/structure/machinery/shower{ @@ -167928,6 +167968,13 @@ }, /turf/unsimulated/floor, /area/antag/mercenary) +"vIN" = ( +/obj/structure/sign/flag/idris{ + pixel_y = 32 + }, +/obj/structure/machinery/vending/quick_e_meals, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/mess_hall) "vIR" = ( /obj/structure/machinery/light/small{ dir = 1 @@ -167947,15 +167994,6 @@ /obj/structure/machinery/vending/cigarette/horizon, /turf/simulated/floor/tiled/full, /area/horizon/command/bridge/upperdeck) -"vJm" = ( -/obj/structure/table/stone/marble, -/obj/structure/machinery/vending/wallmed1{ - pixel_y = 30; - req_access = list(110) - }, -/obj/item/eftpos, -/turf/simulated/floor/tiled/dark, -/area/shuttle/merchant) "vJq" = ( /obj/effect/floor_decal/spline/fancy/wood/corner{ dir = 8 @@ -168381,6 +168419,19 @@ /obj/effect/floor_decal/industrial/outline/red, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/armoury) +"vLY" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/obj/structure/machinery/computer/guestpass{ + pixel_y = 27; + pixel_x = -2 + }, +/obj/structure/bed/stool/chair/padded/red{ + dir = 8 + }, +/turf/simulated/floor/lino/diamond, +/area/horizon/service/mess_hall) "vMa" = ( /obj/structure/engineer_maintenance/electric/wall, /obj/effect/floor_decal/corner/dark_green{ @@ -168501,6 +168552,13 @@ /obj/effect/floor_decal/industrial/hatch_door/service, /turf/simulated/floor/tiled/dark/full, /area/horizon/service/bar) +"vNf" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood/corner, +/turf/simulated/floor/wood, +/area/horizon/service/mess_hall) "vNk" = ( /obj/effect/floor_decal/corner/green/diagonal, /obj/structure/engineer_maintenance/pipe/wall, @@ -169757,6 +169815,26 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/maintenance/deck_1/operations/starboard) +"vVN" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 1; + sortType = "Bar" + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/horizon/service/bar) "vVP" = ( /obj/structure/machinery/suit_cycler{ req_access = list(110) @@ -170528,10 +170606,6 @@ /obj/structure/bed/roller, /turf/simulated/floor/tiled/dark, /area/shuttle/mercenary) -"waR" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/turf/simulated/floor/wood, -/area/horizon/service/mess_hall) "waX" = ( /turf/simulated/floor/wood, /area/horizon/command/heads/om) @@ -171454,6 +171528,15 @@ }, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) +"wgd" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/mess_hall) "wgj" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden{ dir = 5 @@ -171514,13 +171597,6 @@ }, /turf/simulated/floor/holofloor/carpet, /area/horizon/holodeck/source_biesel) -"wgH" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/service/mess_hall) "wgI" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/corner/mauve/diagonal, @@ -171546,17 +171622,6 @@ /obj/effect/floor_decal/industrial/hatch_door/yellow, /turf/simulated/floor/tiled/full, /area/horizon/rnd/hallway) -"wgO" = ( -/obj/structure/machinery/camera/network/service{ - c_tag = "Service - D2 Washroom"; - dir = 4 - }, -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/industrial/hatch/emergency_closet, -/obj/item/storage/toolbox/emergency, -/obj/structure/machinery/firealarm/west, -/turf/simulated/floor/tiled/full, -/area/horizon/crew/washroom/deck_2) "wgP" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 6 @@ -171842,29 +171907,6 @@ "wiG" = ( /turf/simulated/wall, /area/horizon/maintenance/deck_2/cargo_compartment) -"wiK" = ( -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 1 - }, -/obj/structure/machinery/light/small/floor, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/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/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/horizon/service/mess_hall) "wiQ" = ( /obj/random/pottedplant, /obj/effect/floor_decal/spline/fancy/wood{ @@ -171910,13 +171952,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/service/bar) -"wjc" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 10 - }, -/obj/structure/machinery/light, -/turf/simulated/floor/tiled, -/area/horizon/stairwell/engineering/deck_1) "wjg" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/closet/firecloset{ @@ -173218,15 +173253,6 @@ /obj/structure/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/lino, /area/horizon/security/investigators_office) -"wqE" = ( -/obj/structure/bed/handrail{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/shuttle/intrepid/starboard_compartment) "wqI" = ( /obj/structure/machinery/vending/generic_clothing, /turf/unsimulated/floor, @@ -173603,28 +173629,6 @@ /obj/effect/floor_decal/corner/dark_green/diagonal, /turf/simulated/floor/tiled, /area/horizon/hallway/primary/deck_3/starboard) -"wte" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/structure/machinery/power/apc/north, -/turf/simulated/floor/tiled, -/area/horizon/stairwell/starboard/deck_1) "wth" = ( /obj/structure/machinery/firealarm/west, /obj/structure/machinery/light/floor{ @@ -173709,13 +173713,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/engineering/atmos/propulsion/starboard) -"wtz" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood/corner, -/turf/simulated/floor/wood, -/area/horizon/service/mess_hall) "wtA" = ( /obj/item/hullbeacon/red, /obj/structure/railing/mapped, @@ -173938,6 +173935,17 @@ /obj/effect/floor_decal/industrial/hatch_door/service, /turf/simulated/floor/tiled/dark/full, /area/horizon/service/hydroponics/garden) +"wuD" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/reagent_dispensers/cookingoil, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/maintenance/deck_2/wing/starboard) "wuE" = ( /obj/structure/cable{ icon_state = "1-2" @@ -174570,6 +174578,14 @@ }, /turf/simulated/floor/plating, /area/horizon/shuttle/quark/cargo_hold) +"wyP" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/obj/random/pottedplant, +/obj/structure/machinery/alarm/north, +/turf/simulated/floor/wood, +/area/horizon/hallway/primary/deck_2/central) "wyV" = ( /obj/structure/disposalpipe/segment, /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -174938,15 +174954,6 @@ /obj/structure/platform/ledge, /turf/simulated/floor/carpet/rubber, /area/horizon/rnd/telesci) -"wBt" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/structure/bed/stool/chair/padded/beige{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/horizon/service/mess_hall) "wBx" = ( /obj/effect/floor_decal/industrial/warning/corner, /obj/random/dirt_75, @@ -175287,9 +175294,83 @@ }, /turf/simulated/floor/tiled, /area/horizon/command/bridge/upperdeck) +"wEo" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/material/knife/tacknife{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/material/knife/tacknife{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/material/knife/tacknife{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/material/knife/tacknife{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/melee/baton/stunrod{ + pixel_x = 1; + pixel_y = -2 + }, +/obj/item/melee/baton/stunrod{ + pixel_x = 1; + pixel_y = -2 + }, +/obj/item/melee/baton/stunrod{ + pixel_x = 1; + pixel_y = -2 + }, +/obj/item/melee/baton/stunrod{ + pixel_x = 1; + pixel_y = -2 + }, +/obj/item/shield/energy{ + pixel_x = -8; + pixel_y = 7 + }, +/obj/item/shield/energy{ + pixel_x = -8; + pixel_y = 7 + }, +/obj/item/shield/energy{ + pixel_x = -8; + pixel_y = 7 + }, +/obj/item/shield/energy{ + pixel_x = -8; + pixel_y = 7 + }, +/obj/item/crowbar/rescue_axe/tactical, +/obj/item/crowbar/rescue_axe/tactical, +/obj/item/crowbar/rescue_axe/tactical, +/obj/item/crowbar/rescue_axe/tactical, +/turf/unsimulated/floor, +/area/antag/mercenary) "wEr" = ( /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/horizon/operations/office_aux) +"wEx" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/floor_decal/corner/green/full{ + dir = 1 + }, +/obj/structure/machinery/light_switch/east{ + pixel_y = -13 + }, +/obj/structure/machinery/firealarm/east, +/turf/simulated/floor/tiled/white, +/area/horizon/crew/washroom/deck_3) "wEy" = ( /obj/structure/machinery/recharge_station, /obj/effect/floor_decal/corner/brown{ @@ -175759,16 +175840,6 @@ /obj/structure/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, /area/horizon/hallway/primary/deck_3/central) -"wHi" = ( -/obj/structure/machinery/orderterminal{ - dir = 1; - pixel_y = 29 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/turf/simulated/floor/wood, -/area/horizon/service/mess_hall) "wHj" = ( /obj/structure/bed/stool/chair/padded/black, /obj/effect/floor_decal/corner/grey{ @@ -175857,13 +175928,6 @@ /obj/effect/floor_decal/industrial/outline/red, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/hallway/aft) -"wIr" = ( -/obj/structure/table/reinforced/steel, -/obj/effect/decal/cleanable/dirt, -/obj/item/crowbar/rescue_axe/tactical, -/obj/item/crowbar/rescue_axe/tactical, -/turf/unsimulated/floor/monotile, -/area/antag/burglar) "wIv" = ( /obj/structure/machinery/firealarm/south, /obj/structure/machinery/light{ @@ -176126,16 +176190,6 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/dark/full, /area/horizon/maintenance/deck_1/hangar/starboard) -"wKn" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/machinist) "wKo" = ( /obj/effect/floor_decal/corner/brown{ dir = 10 @@ -176636,27 +176690,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/hallway/primary/deck_3/central) -"wNX" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/light/floor{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/hallway/primary/deck_2/fore) "wOe" = ( /obj/structure/table/standard, /obj/item/clothing/glasses/hud/health, @@ -177010,6 +177043,30 @@ }, /turf/simulated/floor/tiled, /area/horizon/stairwell/bridge/deck_3) +"wPA" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/machinery/light/floor{ + dir = 4 + }, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline_straight/service{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/mess_hall) "wPC" = ( /obj/effect/floor_decal/industrial/hatch_door/yellow, /obj/structure/machinery/door/airlock/maintenance{ @@ -177021,27 +177078,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/evidence_storage) -"wPF" = ( -/obj/structure/mirror{ - pixel_y = 36 - }, -/obj/structure/sink{ - pixel_y = 28 - }, -/obj/effect/floor_decal/corner/green/diagonal, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/machinery/button/remote/airlock{ - dir = 4; - id = "engi_washroom"; - name = "Door Bolt Control"; - specialfunctions = 4; - pixel_x = 24; - pixel_y = 2 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/engineering/washroom) "wPG" = ( /obj/structure/shuttle/engine/heater{ dir = 1 @@ -178608,12 +178644,6 @@ }, /turf/unsimulated/floor/plating, /area/centcom/evac) -"wYS" = ( -/obj/structure/table/rack, -/obj/random/loot, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_2/wing/starboard) "wYU" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -178739,13 +178769,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/stairwell/port/deck_3) -"wZD" = ( -/obj/structure/machinery/light/floor, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/turf/simulated/floor/wood, -/area/horizon/service/mess_hall) "wZE" = ( /obj/structure/cable{ icon_state = "1-2" @@ -179236,6 +179259,14 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/maintenance/deck_3/aft/port) +"xcI" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/structure/machinery/light/floor, +/obj/structure/machinery/alarm/south, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/central) "xcO" = ( /turf/simulated/wall/shuttle/unique/ert{ icon_state = "7,0" @@ -179440,6 +179471,27 @@ }, /turf/simulated/open, /area/horizon/maintenance/deck_2/cryo) +"xdH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing/mapped, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/service/starboard) +"xdN" = ( +/obj/structure/machinery/holosign/service/kitchen{ + pixel_y = -32; + id = "kitchen" + }, +/obj/item/lore_radio{ + pixel_y = 4; + pixel_x = 2 + }, +/obj/structure/table/fancy/black, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/mess_hall) "xdR" = ( /obj/effect/floor_decal/corner/dark_blue/full, /obj/structure/table/reinforced, @@ -180030,6 +180082,12 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/hangar/operations) +"xhP" = ( +/obj/structure/bed/stool/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/lino/diamond, +/area/horizon/service/mess_hall) "xhS" = ( /obj/structure/machinery/atmospherics/pipe/simple/visible/black{ dir = 4 @@ -180527,6 +180585,19 @@ "xlu" = ( /turf/simulated/wall/r_wall, /area/horizon/maintenance/deck_3/cafe) +"xlv" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/turf/simulated/floor/wood, +/area/horizon/service/mess_hall) +"xly" = ( +/obj/structure/machinery/ammunition_loader/francisca{ + weapon_id = "Francisca Rotary Gun" + }, +/obj/structure/machinery/firealarm/south, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/canary) "xlA" = ( /obj/effect/floor_decal/spline/plain{ dir = 8 @@ -180627,19 +180698,6 @@ /obj/effect/floor_decal/industrial/outline/operations, /turf/simulated/floor/carpet/rubber, /area/horizon/engineering/atmos/storage) -"xmy" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/horizon/service/mess_hall) "xmB" = ( /obj/structure/table/steel, /obj/item/multitool, @@ -181059,6 +181117,20 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/shuttle/intrepid/buffet) +"xpk" = ( +/obj/structure/sign/flag/scc{ + pixel_y = 32 + }, +/obj/structure/machinery/appliance/cooker/microwave{ + pixel_y = 12; + pixel_x = -1 + }, +/obj/structure/table/wood, +/obj/item/reagent_containers/glass/rag{ + pixel_x = -3 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/mess_hall) "xpl" = ( /obj/structure/shuttle_part/scc/scout{ icon_state = "7,5" @@ -181817,16 +181889,6 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/atmos/storage_maintenance) -"xtZ" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/obj/structure/machinery/camera/network/service{ - c_tag = "Service - Mess Hall 2"; - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/service/mess_hall) "xub" = ( /obj/structure/cable{ icon_state = "1-2" @@ -181962,15 +182024,6 @@ }, /turf/unsimulated/floor/dark, /area/antag/actor) -"xuA" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/obj/structure/bed/stool/chair/padded/red{ - dir = 4 - }, -/turf/simulated/floor/lino/diamond, -/area/horizon/service/mess_hall) "xuG" = ( /obj/structure/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 @@ -182974,12 +183027,6 @@ icon_state = "desert" }, /area/centcom/shared_dream) -"xAV" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/turf/simulated/floor/wood, -/area/horizon/service/mess_hall) "xAY" = ( /obj/structure/closet/secure_closet/guncabinet{ name = "FIB Sidearm"; @@ -183306,15 +183353,6 @@ }, /turf/simulated/wall/shuttle/scc, /area/horizon/shuttle/intrepid/port_storage) -"xDv" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/obj/structure/bed/stool/chair/padded/black{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/horizon/service/mess_hall) "xDw" = ( /obj/structure/table/glass, /obj/effect/floor_decal/corner/beige/diagonal, @@ -183876,14 +183914,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/lobby) -"xGR" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/effect/floor_decal/spline/plain/green{ - dir = 4 - }, -/obj/structure/machinery/alarm/south, -/turf/simulated/floor/tiled/white, -/area/horizon/crew/washroom/deck_2) "xGS" = ( /obj/structure/machinery/camera/network/first_deck{ c_tag = "First Deck - EVA Storage 2" @@ -183949,6 +183979,16 @@ /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/wood, /area/horizon/command/heads/om) +"xHy" = ( +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/extinguisher_cabinet/west, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/shuttle/intrepid/port_compartment) "xHA" = ( /obj/structure/machinery/vending/snack{ density = 0; @@ -184818,6 +184858,17 @@ "xNA" = ( /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/horizon/maintenance/deck_1/main/port) +"xNC" = ( +/obj/structure/machinery/camera/network/service{ + c_tag = "Service - D2 Washroom"; + dir = 4 + }, +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/industrial/hatch/emergency_closet, +/obj/item/storage/toolbox/emergency, +/obj/structure/machinery/firealarm/west, +/turf/simulated/floor/tiled/full, +/area/horizon/crew/washroom/deck_2) "xND" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 8 @@ -185018,6 +185069,13 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/wood, /area/shuttle/skipjack) +"xPo" = ( +/obj/effect/floor_decal/corner/yellow/full, +/obj/structure/machinery/light/floor{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/stairwell/engineering/deck_1) "xPt" = ( /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor, @@ -185125,6 +185183,12 @@ name = "shallow water" }, /area/horizon/holodeck/source_konyang) +"xQe" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/large_stock_marker, +/obj/structure/machinery/firealarm/east, +/turf/simulated/floor/tiled/gunmetal, +/area/horizon/operations/warehouse) "xQs" = ( /obj/structure/table/rack, /obj/item/storage/box/tactical/flashbangs{ @@ -185224,6 +185288,13 @@ }, /turf/simulated/floor/carpet/green, /area/horizon/medical/psych) +"xQQ" = ( +/obj/structure/platform/cutout{ + dir = 8 + }, +/obj/structure/platform_stairs/full/east_west_cap, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/mess_hall) "xQS" = ( /obj/structure/shuttle_part/scc/scout{ icon_state = "7,6" @@ -185317,6 +185388,18 @@ /obj/structure/bookcase/libraryspawn/nonfiction, /turf/simulated/floor/wood/yew, /area/centcom/shared_dream) +"xRD" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'WARNING: FIRING RANGE'."; + name = "\improper WARNING: FIRING RANGE sign"; + pixel_y = 32 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/firing_range) "xRM" = ( /obj/item/crowbar, /obj/structure/table/rack, @@ -185407,6 +185490,12 @@ }, /turf/simulated/floor/tiled, /area/horizon/medical/morgue) +"xSG" = ( +/obj/effect/floor_decal/industrial/outline/research, +/obj/structure/machinery/suit_cycler/science/prepared, +/obj/structure/machinery/firealarm/east, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/storage/eva/expedition) "xSN" = ( /obj/structure/machinery/atmospherics/pipe/simple/visible/black, /obj/effect/floor_decal/industrial/warning{ @@ -185692,17 +185781,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/hallway/primary/deck_3/starboard) -"xUK" = ( -/obj/structure/bed/stool/bar/padded/red, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 9 - }, -/turf/simulated/floor/lino/diamond, -/area/horizon/service/mess_hall) "xUL" = ( /obj/effect/floor_decal/industrial/outline_straight/operations, /turf/simulated/floor/tiled/full, @@ -185771,22 +185849,6 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/wing/port) -"xUY" = ( -/obj/structure/machinery/computer/ship/helm/cockpit{ - pixel_y = -18 - }, -/obj/structure/machinery/light/spot, -/obj/structure/bed/stool/chair/cockpit, -/obj/structure/machinery/computer/ship/engines/cockpit{ - pixel_x = 26 - }, -/obj/structure/machinery/computer/shuttle_control/explore/canary/left{ - pixel_x = -25; - req_one_access = list(73,74); - req_access = null - }, -/turf/simulated/floor/carpet/rubber, -/area/horizon/shuttle/canary) "xVg" = ( /obj/effect/floor_decal/corner/brown/diagonal, /obj/structure/cable/green{ @@ -185815,6 +185877,16 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/storage/eva/expedition) +"xVk" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 8 + }, +/obj/structure/machinery/light/small/floor, +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/horizon/service/mess_hall) "xVm" = ( /obj/structure/machinery/door/airlock/maintenance{ dir = 1; @@ -185960,25 +186032,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/hangar/auxiliary) -"xXa" = ( -/obj/effect/decal/fake_object{ - name = "cockpit ladder"; - pixel_x = 9; - pixel_y = -4 - }, -/obj/structure/machinery/door/window/northright{ - req_one_access = list(77) - }, -/obj/item/clothing/head/helmet/pilot/scc{ - pixel_x = -9; - pixel_y = 2 - }, -/obj/item/clothing/head/helmet/pilot/scc{ - pixel_x = -9; - pixel_y = -5 - }, -/turf/simulated/floor/carpet/rubber, -/area/horizon/shuttle/canary) "xXe" = ( /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, @@ -186201,6 +186254,15 @@ }, /turf/simulated/floor/tiled, /area/horizon/crew/vacantoffice) +"xYJ" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/obj/structure/bed/stool/chair/padded/red{ + dir = 4 + }, +/turf/simulated/floor/lino/diamond, +/area/horizon/service/mess_hall) "xYO" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/effect/floor_decal/industrial/warning{ @@ -186223,20 +186285,6 @@ dir = 8 }, /area/centcom/distress_prep) -"xYV" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/effect/floor_decal/corner/green/full{ - dir = 1 - }, -/obj/structure/machinery/light_switch/east, -/turf/simulated/floor/tiled/white, -/area/horizon/crew/washroom/deck_3) "xYY" = ( /obj/structure/shuttle_part/scc/mining{ icon_state = "0,4"; @@ -186406,16 +186454,6 @@ /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/holofloor/grass, /area/horizon/holodeck/source_picnicarea) -"yai" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/extinguisher_cabinet/west, -/turf/simulated/floor/plating, -/area/horizon/shuttle/intrepid/port_compartment) "yak" = ( /obj/structure/ladder{ pixel_y = 16 @@ -186774,6 +186812,13 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/hangar/starboard) +"ycZ" = ( +/obj/structure/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch_door/service{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/hallway/primary/deck_2/fore) "yda" = ( /obj/structure/table/standard, /obj/item/reagent_containers/spray/cleaner{ @@ -186827,6 +186872,21 @@ /obj/structure/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, /area/horizon/hangar/auxiliary) +"ydC" = ( +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/structure/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/intrepid/starboard_compartment) "ydD" = ( /obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, /obj/structure/machinery/door/blast/shutters/open{ @@ -187994,25 +188054,14 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/hallway/primary/deck_2/fore) -"ykU" = ( -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 4 - }, -/obj/structure/machinery/light/small/floor, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +"ykW" = ( +/obj/effect/floor_decal/corner/dark_green{ dir = 10 }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/wood, -/area/horizon/service/mess_hall) +/obj/structure/machinery/power/apc/south, +/obj/structure/cable/green, +/turf/simulated/floor/tiled, +/area/horizon/stairwell/starboard/deck_1) "ylc" = ( /obj/structure/sign/radiation{ pixel_x = 32 @@ -205488,7 +205537,7 @@ rSL swu rSL tss -kAI +diO rjP tss tss @@ -210616,7 +210665,7 @@ psA wlr tUD eYI -ujD +xQe wlr sll lNG @@ -213674,7 +213723,7 @@ tJJ fXK qEo rUW -pis +opY eUg rRg lbk @@ -213931,8 +213980,8 @@ tJJ uGM qee rAb -rAb -rAb +hhA +nhz keV eaM eaM @@ -217314,8 +217363,8 @@ wUU frY frY frY -wte -loP +mgl +ykW vDX vDX vDX @@ -217571,10 +217620,10 @@ tJk hyz qcv xao -nni -taQ +hIv +qVG woL -lbl +hnS fOw iIi vDX @@ -217831,7 +217880,7 @@ xao taV cYT xxL -vHc +sop oKc iBy vDX @@ -218557,7 +218606,7 @@ hvg odS eBB diI -kIw +xPo iLR tCy psO @@ -218813,8 +218862,8 @@ oxR nOg ahB wyq -tjG -wjc +eqw +gnI iLR pUl bnW @@ -219327,8 +219376,8 @@ hbv lIF xzi hJH -dEk -hkp +cmf +qZL iLR iLR ltZ @@ -219583,8 +219632,8 @@ xSn qYa gXi cQo -kqN -pTk +pBS +tKR xtU vjx ihS @@ -219639,7 +219688,7 @@ gfR uxq rjS dSL -opZ +ksv xro ecR opZ @@ -219896,11 +219945,11 @@ bMx nZY iWc vmj -odp +qEs pNo gxl -mgk -wqE +ydC +pun cZT vqg wtF @@ -220412,7 +220461,7 @@ daj msi wKi tfX -dHT +cNd pZe gsA qwA @@ -221952,11 +222001,11 @@ cpQ nBQ kyi wtP -hkJ -yai -fxX -cIe -glZ +uXP +xHy +jKv +jOz +pqW sdr ret pQc @@ -222209,7 +222258,7 @@ wdq bZW dNA mKI -dNh +gUz pdq wax wXd @@ -226299,7 +226348,7 @@ oVi esD pnh twA -iHy +xSG iHy oVi odK @@ -230172,9 +230221,9 @@ suN nGC qsN ldx -rzJ +pdy piI -brW +xly pUn ePe pBt @@ -230432,9 +230481,9 @@ npj tlI lru sAJ -xXa -onk -xUY +fRa +eff +lhR ala kGj xeS @@ -230686,7 +230735,7 @@ suN xcV hCp byt -ehl +eWr jOP sBQ gxQ @@ -270744,7 +270793,7 @@ eSV rZc lkX fJX -wYS +qcR jNB sam qog @@ -271001,7 +271050,7 @@ wSb xnV njK fJX -mYY +nGm qec kov wrk @@ -271770,7 +271819,7 @@ eSV wSb xnV fJX -bjK +wuD gNJ cPd eQA @@ -279004,7 +279053,7 @@ mAZ nqF nqF jJA -gTI +eWQ dVT rBN nqF @@ -279263,7 +279312,7 @@ xwX uao uao aGE -oLO +mKo nqF lhz lqA @@ -280032,7 +280081,7 @@ sZN vkm ezv rJH -cby +uqq mSj wPm vhY @@ -280286,9 +280335,9 @@ kAN hHf lwO jyY -myY -qvz -ojm +ufT +ioY +fFe ade luo fKP @@ -280545,7 +280594,7 @@ vvB bwx deA gPP -hhj +hop cTs hxa lKQ @@ -280802,7 +280851,7 @@ dDO iiE aYT kYJ -uqm +duA uRN uGX bSH @@ -281059,7 +281108,7 @@ jlJ ntJ iah iLM -wKn +dzP wfB svy svy @@ -281316,12 +281365,12 @@ owZ owZ sCF iOK -mJA -rzs +dhb +rOm svy -aAc +pwq ldd -tqe +rCh mUm vgT uYQ @@ -281573,10 +281622,10 @@ nTv wor nqF bvR -gxw +qKE dox svy -apP +pfM oIQ wMg vrd @@ -281830,10 +281879,10 @@ jBE qsB bdK vpe -pxs -bMe -eol -sWI +btw +rNw +kLn +rhb uJr pmo wvm @@ -282090,27 +282139,27 @@ oQc omS uca svy -vgj +qpW qPl cPR jYf vgT sDq -skA +czM dbd dbd dbd dbd dbd dbd -skA +czM dbd dbd dbd dbd dbd dbd -skA +czM dbd hoE eSV @@ -282309,7 +282358,7 @@ qlH hBD yaW rLT -tyS +fGW xGE fpR rFQ @@ -282347,7 +282396,7 @@ tQJ tQJ dlQ dlQ -iLl +bjO dlQ dlQ kdf @@ -282564,9 +282613,9 @@ hYI eKH pIx pIx -wPF +jLl mRZ -tjg +hxf xGE fpR rFQ @@ -282600,12 +282649,12 @@ bhL diV mWb uEX -lzp +cMY bhL nXt xli -cOc -jvL +qKJ +uhb uSI gba jzk @@ -282621,7 +282670,7 @@ fMp bGX hJy ezA -ujx +oks oaZ gbw qTm @@ -282861,8 +282910,8 @@ nyl gRp dAr dAr -fNa -tUO +ozL +xdH kJk gba aRs @@ -282884,7 +282933,7 @@ oGC qyu pqG lbo -iAJ +pam eSV eSV eSV @@ -283064,7 +283113,7 @@ pJD wue aYK icY -vaU +mJP qnw wsZ cbC @@ -283321,7 +283370,7 @@ wOK aeA tQZ dUw -rWU +voc gFY kTd mKZ @@ -283396,7 +283445,7 @@ nhx aSm hHd kcY -law +uOK sdk uYQ eSV @@ -283631,18 +283680,18 @@ srt iKO ffS wNm -bdl -jZQ -ozD +btc +oFY +duU tXA xsF -rFh -mOv +tyJ +hjj rMw -fIx +jQN igx -jlR -lQI +fgw +sac clk fSc ujc @@ -283835,7 +283884,7 @@ jay wmU ijW qVf -sRU +bvN aYK sFn rHz @@ -283888,18 +283937,18 @@ vth wJJ gmp avy -wgH -okP -bka -iBU +ksB +wPA +jRy +vvG vNL vNL vNL vNL -nej -qnh -lkM -uou +pzF +gnL +kBy +lew kaF qDr ckI @@ -284092,7 +284141,7 @@ vix wcN aYK irI -rfy +aru iGQ iGQ mHM @@ -284145,18 +284194,18 @@ qch qch uhZ uhZ -lnC +fRz ioS mUz uhZ -sZs -bXk -dvx -wBt -iQl -pZo -tta -nli +xpk +iSz +gOd +jJG +edH +xQQ +pCx +tVw ezA oYz uxV @@ -284402,18 +284451,18 @@ tXO qch qAc xiu -kdw -cQp -wgO +tby +jnM +xNC uhZ -rty -fxd -xmy -mRv -gEy -wiK -eRx -jCe +qph +niH +pyL +cjP +ltJ +lYR +iCV +rSm xjF uvs bap @@ -284659,20 +284708,20 @@ sgx qch uhZ uhZ -fmQ -ndI -dnR +nJj +gYg +myg uhZ -wHi -bNx -oja -oja -oja -dLu -anH -mFe +sqR +grl +req +req +req +qWG +ogt +giv ezA -uHm +jia gZL dhe dhe @@ -284683,7 +284732,7 @@ wjb tZZ ptr rrt -iAJ +pam eSV eSV eSV @@ -284916,22 +284965,22 @@ qWO qch gtE vyN -iXH -sZB -sgq +qNO +mIs +lRD uhZ -ioi -bDv -vkh -ekl -pIS -tYU -jnX -mxl +lvk +mOr +gvS +jNo +bRc +hYP +nCX +nMW dze -jzI +iHm aKh -esH +vuE tQz pKu rWb @@ -285148,7 +285197,7 @@ dkp vqm egG oFo -sIs +uXl jHa wee mqS @@ -285173,24 +285222,24 @@ udL qch uhZ uhZ -jPR -tuO -xGR +sYt +cyR +dIO uhZ -oGe -jJR -miw -miw -miw -tYU -jnX -taL +fcP +vAU +xhP +xhP +xhP +hYP +nCX +saM dze -aKf +kqE hkY -ufr -pvE -jfj +bFx +vVN +urn nUD xuP jJp @@ -285430,23 +285479,23 @@ qch qch uhZ wOx -iXH -reI +qNO +etb eFG uhZ -jrf -waR -kqZ -sqF -uZq -oaW -hDo -wZD +kNc +lJW +rWt +tRw +fFs +qgO +gBG +kSa xTb -eMu -oeW +fdd +cbx ckI -bfx +eDG fAA omW omW @@ -285683,27 +285732,27 @@ dDz aXR rPo hKL -ksC -tyq +nKu +mrj uhZ -luY -eew -usT +gyv +lSz +cyU rrj uhZ -cra -qel +rTc +xVk diy vPE -wtz -ykU -tFD -bVa +vNf +okq +gyk +djV ezA -bho -rdo +uQF +pay ejU -vgQ +iQk pxu nTa peR @@ -285944,18 +285993,18 @@ kBE mQk uhZ uhZ -tTL +gvd mZf hbN uhZ -gAZ -xAV -scd -uQn -xDv -lcM -fsG -gAc +vIN +xlv +lBe +nUS +oRN +deR +aBT +xdN wxI wxI wxI @@ -286199,22 +286248,22 @@ ykT bay eaG dZJ -tOl -oHj -anp +rRb +ycZ +jJE aSY -tPL -hNL +uhe +rHq cuF cuF cuF cuF -dmn -lYI -bXD -bRM +wgd +mfc +cTt +hrz lGT -mcc +erE ksS egD vcX @@ -286457,7 +286506,7 @@ lVE uzc wOh sOq -hIp +pwt aku hsA ujy @@ -286468,8 +286517,8 @@ ujy ujy uwD aku -tPY -xUK +jFk +tgE erO kwJ ioG @@ -286482,7 +286531,7 @@ mDX jgH dHf aLr -iAJ +pam eSV eSV eSV @@ -286711,19 +286760,19 @@ sGz fvA xTY hFk -wNX -iNe +fng +cPK xDF -oHj -jCE -hHh -gje -xtZ -lXQ +ycZ +aPb +dNQ +fSj +kMl +dSo wvQ wvQ wvQ -omp +lsE eCK etm rGR @@ -286944,7 +286993,7 @@ gfE vVw stI stI -fxO +wyP jRz acv rkO @@ -286977,11 +287026,11 @@ wuC sMi jXA nBM -bZv -bVO -nTD +dqT +feW +kcf gKM -xuA +xYJ etm rGR erO @@ -287238,8 +287287,8 @@ tev tev tev nBM -tXu -nRP +aOF +paF rGR lFR kHw @@ -287491,11 +287540,11 @@ kpD gid ayt jHq -jdG +rjz tof bQH nBM -hEC +vLY etm rGR erO @@ -287748,17 +287797,17 @@ kpD gid ayt jHq -jdG +rjz vOx hut uGv -szD +nAk bUs -lqJ +tHD xPP cGB wDb -tjA +nHn wYW kPH hEJ @@ -287998,20 +288047,20 @@ vSs vTT rSi bSV -hDK +beB xZE ayt nwC izN rvS jHq -jdG +rjz nfm lHH nBM -hoQ +jTm xoP -kBr +iDJ xFc aAO mCY @@ -288281,7 +288330,7 @@ lYS plb ewn urZ -iAJ +pam eSV eSV eSV @@ -289022,7 +289071,7 @@ qZz scw hPw xZE -ocO +jAA seV kLW lEE @@ -289269,7 +289318,7 @@ jWS hTg fNg vje -edn +xcI jEi qZz qZz @@ -289760,7 +289809,7 @@ wiC jeh dRo usn -nVT +lCf dRo czU nkj @@ -290080,7 +290129,7 @@ eMH dsB aVk nxk -iAJ +pam eSV eSV eSV @@ -291043,7 +291092,7 @@ hPg eJb vAn xml -lpE +ddN vAn ngu fqf @@ -291353,14 +291402,14 @@ sRg eWI sIA xKD -qhx +bEE hCm hCm hCm hCm hCm hCm -qhx +bEE hCm lEF eSV @@ -298784,7 +298833,7 @@ laK tXd kCc fTe -meW +byO mbR mbR goL @@ -348922,8 +348971,8 @@ oiP dxT ovB aRj -rLo -tkX +tco +alr yeP xtz suS @@ -349416,7 +349465,7 @@ mOz bKr gsW ryA -xYV +wEx nXX uFI bzZ @@ -349436,7 +349485,7 @@ kYG nyU mSm bcP -aap +srM uZj aeL flc @@ -349445,7 +349494,7 @@ flc geV mjr lOz -oxI +fqZ ljR uYQ wWR @@ -349693,7 +349742,7 @@ iNl ijx lYC aRj -qmh +cRp xDc rnO dNR @@ -349950,15 +349999,15 @@ clg clg tJS aRj -hCM -hAz -iIN +cga +qeZ +fvW wso gjA qiq chn -cuq -gBt +igB +fHm wwR ruS uYQ @@ -350205,7 +350254,7 @@ szR jKX oip kxU -ozg +fCP aRj hiO rNC @@ -351748,7 +351797,7 @@ cUS ybI ylY mFt -kFZ +kBc dXV dna vRS @@ -351972,7 +352021,7 @@ iZO tPu eCm xbs -eOv +cPP imk daq vpu @@ -355839,7 +355888,7 @@ jHI tZo xTx oiU -twe +rLU gtL gtL gtL @@ -356863,7 +356912,7 @@ qFc bAb hYv obN -gjI +syE qBZ vAZ agp @@ -358605,7 +358654,7 @@ tAV vfC miS uyp -hLV +cTU uyp uqY uyp @@ -358653,7 +358702,7 @@ szf wBD tgR fDe -ldI +quL xMK bpl kdj @@ -358910,7 +358959,7 @@ nDY wBD hpS hRO -bhy +aNR xMK ykf qPs @@ -359156,14 +359205,14 @@ qVz jCj pNm pmE -bkx +pxA sXv jxH dWN -fvB +gGP xXQ tAm -eVf +tDQ wBD hxb qob @@ -366094,7 +366143,7 @@ frv dZH tso lRV -ges +xRD ctH ctH ghD @@ -434529,7 +434578,7 @@ cht cht cht xYP -hcX +wEo gIk auP auP @@ -439341,7 +439390,7 @@ eSV eSV tcP tcP -vJm +nJX jZs byK byK @@ -440986,7 +441035,7 @@ eSV vZj ozQ xbA -iYF +lRS ixY kQx ozQ @@ -441707,7 +441756,7 @@ bDa hHR bFZ eDQ -wIr +gHP pCo eDw sEA @@ -445847,8 +445896,8 @@ dpX dcc dcc eRW -dIk -swj +lNs +bVn lPN ioe nHE