From 5c344e36a3b72ed72ef2d017cec828a15b7a1a7f Mon Sep 17 00:00:00 2001 From: DreamySkrell <107256943+DreamySkrell@users.noreply.github.com> Date: Fri, 8 Nov 2024 16:35:04 +0100 Subject: [PATCH] SCCV Quark - new xenoarch/science shuttle (#20127) feedback thread: - https://forums.aurorastation.org/topic/21275-sccv-quark-new-xenoarch-shuttle-feedback-thread/#comment-178259 changes: - rscadd: "Adds SCCV Quark, new shuttle for xenoarch/science, on Horizon." - rscadd: "Small remap of the aux hangar on Horizon, adding some expedition supplies there." reasoning and explanation: - The idea is that xenoarchs/science use this if they want to go on a solo adventure for whatever reason (and die to random simplemobs), without stealing the intrepid (that could be used to go to the odyssey scenario site). - Xenoarchs would still be allowed to use the intrepid, if it's not used for odyssey or whatever and they want to organize a bigger expedition with more crew (or at least I hope so, I don't make the rules). - It's a small shuttle, but it has more than enough seating and some cargo space. I think, at least, it is fine for a xenoarch or two and a few passengers. - We need a xenoarch/science shuttle like yesterday, and no one's really shown any interest in mapping it in the past few months, so I made this. - If anyone has a different idea and wants to map their own shuttle, it's fine ofc. This is just my PR, anyone is free to open their own, and the best shuttle will be merged ![image](https://github.com/user-attachments/assets/269f6369-c95a-4e78-8305-0525df30058b) ![image](https://github.com/user-attachments/assets/507fca8c-ea38-4a7b-b268-8b62acc7f543) ![image](https://github.com/user-attachments/assets/fc7857a6-2a4a-414a-a49b-3610a123c812) ![image](https://github.com/user-attachments/assets/984cfcc1-756b-4963-b6fe-b01912326eb6) ![image](https://github.com/user-attachments/assets/ca803886-925a-4449-a343-4c4f3acdbeba) (explanation on top of description) --------- Co-authored-by: DreamySkrell <> --- code/__DEFINES/machinery.dm | 5 +- code/game/machinery/camera/presets.dm | 3 + code/game/objects/items/blueprints.dm | 7 +- .../components/unary/outlet_injector.dm | 14 + code/modules/power/apc.dm | 21 + code/modules/telesci/gps.dm | 9 + .../DreamySkrell-science-shuttle.yml | 8 + maps/sccv_horizon/code/sccv_horizon.dm | 7 +- maps/sccv_horizon/code/sccv_horizon_areas.dm | 18 +- .../sccv_horizon/code/sccv_horizon_overmap.dm | 59 +- .../code/sccv_horizon_shuttles.dm | 26 +- maps/sccv_horizon/sccv_horizon.dmm | 6199 ++++++++++------- 12 files changed, 3757 insertions(+), 2619 deletions(-) create mode 100644 html/changelogs/DreamySkrell-science-shuttle.yml diff --git a/code/__DEFINES/machinery.dm b/code/__DEFINES/machinery.dm index 495fac0beba..3dc7f732189 100644 --- a/code/__DEFINES/machinery.dm +++ b/code/__DEFINES/machinery.dm @@ -79,8 +79,9 @@ #define NETWORK_FIRST_DECK "First Deck" #define NETWORK_SECOND_DECK "Second Deck" #define NETWORK_THIRD_DECK "Third Deck" -#define NETWORK_INTREPID "Intrepid" -#define NETWORK_CANARY "Canary" +#define NETWORK_INTREPID "Intrepid" // horizon shuttle, expedition/transport +#define NETWORK_CANARY "Canary" // horizon shuttle, scout/fighter +#define NETWORK_QUARK "Quark" // horizon shuttle, xenoarch/science #define NETWORK_NEWS "News" diff --git a/code/game/machinery/camera/presets.dm b/code/game/machinery/camera/presets.dm index 0e402ce2db2..2e6111f0fa6 100644 --- a/code/game/machinery/camera/presets.dm +++ b/code/game/machinery/camera/presets.dm @@ -145,6 +145,9 @@ var/global/list/engineering_networks = list( /obj/machinery/camera/network/canary network = list(NETWORK_CANARY) +/obj/machinery/camera/network/quark + network = list(NETWORK_QUARK) + // AUTONAME /obj/machinery/camera/autoname var/number = 0 //camera number in area diff --git a/code/game/objects/items/blueprints.dm b/code/game/objects/items/blueprints.dm index eb92e24759b..08f32d07fef 100644 --- a/code/game/objects/items/blueprints.dm +++ b/code/game/objects/items/blueprints.dm @@ -165,11 +165,16 @@ shuttle_name = "Canary" shuttle_type = /obj/effect/overmap/visitable/ship/landable/canary +/obj/item/blueprints/shuttle/quark + shuttle_name = "Quark" + shuttle_type = /obj/effect/overmap/visitable/ship/landable/quark + /obj/item/storage/lockbox/shuttle_blueprints //Blueprints for modifying the Horizon's shuttles. name = "shuttle blueprints lockbox" req_access = list(ACCESS_CE) starts_with = list( /obj/item/blueprints/shuttle/intrepid = 1, /obj/item/blueprints/shuttle/mining_shuttle = 1, - /obj/item/blueprints/shuttle/canary = 1 + /obj/item/blueprints/shuttle/canary = 1, + /obj/item/blueprints/shuttle/quark = 1, ) diff --git a/code/modules/atmospherics/components/unary/outlet_injector.dm b/code/modules/atmospherics/components/unary/outlet_injector.dm index c1f8fbaeee0..46010337e04 100644 --- a/code/modules/atmospherics/components/unary/outlet_injector.dm +++ b/code/modules/atmospherics/components/unary/outlet_injector.dm @@ -158,3 +158,17 @@ /obj/machinery/atmospherics/unary/outlet_injector/hide(var/i) update_underlays() + +// ---------- subtypes + +/obj/machinery/atmospherics/unary/outlet_injector/supply + connect_types = CONNECT_TYPE_SUPPLY + +/obj/machinery/atmospherics/unary/outlet_injector/scrubber + connect_types = CONNECT_TYPE_SCRUBBER + +/obj/machinery/atmospherics/unary/outlet_injector/fuel + connect_types = CONNECT_TYPE_FUEL + +/obj/machinery/atmospherics/unary/outlet_injector/aux + connect_types = CONNECT_TYPE_AUX diff --git a/code/modules/power/apc.dm b/code/modules/power/apc.dm index 56e056cba6a..bd0bd2f45b3 100644 --- a/code/modules/power/apc.dm +++ b/code/modules/power/apc.dm @@ -1536,6 +1536,27 @@ ABSTRACT_TYPE(/obj/machinery/power/apc) dir = SOUTH pixel_y = -4 +ABSTRACT_TYPE(/obj/machinery/power/apc/quark) + cell_type = /obj/item/cell/high + req_access = null + req_one_access = list(ACCESS_XENOARCH, ACCESS_RESEARCH, ACCESS_BRIDGE_CREW) + +/obj/machinery/power/apc/quark/north + dir = NORTH + pixel_y = 22 + +/obj/machinery/power/apc/quark/east + dir = EAST + pixel_x = 12 + +/obj/machinery/power/apc/quark/west + dir = WEST + pixel_x = -12 + +/obj/machinery/power/apc/quark/south + dir = SOUTH + pixel_y = -4 + /obj/machinery/power/apc/mining_shuttle cell_type = /obj/item/cell/high req_access = null diff --git a/code/modules/telesci/gps.dm b/code/modules/telesci/gps.dm index d7b9f03be35..a1189f481f6 100644 --- a/code/modules/telesci/gps.dm +++ b/code/modules/telesci/gps.dm @@ -382,4 +382,13 @@ GLOBAL_LIST_EMPTY(gps_list) gps_prefix = "COM" compass_color = "#57c5e0" gpstag = "CANARY" + +/obj/item/device/gps/stationary/sccv_quark + name = "static GPS (SCCV Quark)" + desc = "A static global positioning system helpful for finding your way back to the SCCV Quark." + icon_state = "gps-sci" + gps_prefix = "SCI" + compass_color = "#d691ce" + gpstag = "QUARK" + /********** Static GPS End **********/ diff --git a/html/changelogs/DreamySkrell-science-shuttle.yml b/html/changelogs/DreamySkrell-science-shuttle.yml new file mode 100644 index 00000000000..eeb0d4860b8 --- /dev/null +++ b/html/changelogs/DreamySkrell-science-shuttle.yml @@ -0,0 +1,8 @@ + +author: DreamySkrell + +delete-after: True + +changes: + - rscadd: "Adds SCCV Quark, new shuttle for xenoarch/science, on Horizon." + - rscadd: "Small remap of the aux hangar on Horizon, adding some expedition supplies there." diff --git a/maps/sccv_horizon/code/sccv_horizon.dm b/maps/sccv_horizon/code/sccv_horizon.dm index 6a2c6cda918..d76f6da5e42 100644 --- a/maps/sccv_horizon/code/sccv_horizon.dm +++ b/maps/sccv_horizon/code/sccv_horizon.dm @@ -129,6 +129,7 @@ /datum/shuttle/autodock/overmap/intrepid, /datum/shuttle/autodock/overmap/mining, /datum/shuttle/autodock/overmap/canary, + /datum/shuttle/autodock/overmap/quark, /datum/shuttle/autodock/ferry/merchant_aurora, /datum/shuttle/autodock/ferry/autoreturn/ccia, /datum/shuttle/autodock/overmap/orion_express_shuttle, @@ -153,8 +154,10 @@ shuttle_manifests = list( "SCCV Canary" = list("color" = "blue", "icon" = "binoculars"), - "SCCV Intrepid" = list("color" = "purple", "icon" = "compass"), - "SCCV Spark" = list("color" = "brown", "icon" = "gem")) + "SCCV Intrepid" = list("color" = "blue", "icon" = "compass"), + "SCCV Spark" = list("color" = "brown", "icon" = "gem"), + "SCCV Quark" = list("color" = "purple", "icon" = "microscope"), + ) shuttle_missions = list("Exploration", "Research", "Prospecting", "Transport", "Combat", "Rescue", "Training") /datum/map/sccv_horizon/send_welcome() diff --git a/maps/sccv_horizon/code/sccv_horizon_areas.dm b/maps/sccv_horizon/code/sccv_horizon_areas.dm index 0fcfe310f3f..8e16fce2669 100644 --- a/maps/sccv_horizon/code/sccv_horizon_areas.dm +++ b/maps/sccv_horizon/code/sccv_horizon_areas.dm @@ -151,9 +151,6 @@ /area/maintenance/substation/hangar name = "Hangar Substation" -/area/hangar/canary - name = "Canary Hangar" - //Operations /area/operations @@ -321,22 +318,37 @@ name = "Intrepid" icon_state = "intrepid" requires_power = TRUE + /area/shuttle/intrepid/crew_compartment name = "Intrepid Crew Compartment" + /area/shuttle/intrepid/cargo_bay name = "Intrepid Cargo Bay" + /area/shuttle/intrepid/engine_compartment name = "Engine Compartment" + /area/shuttle/intrepid/atmos_compartment name = "Atmos Compartment" + /area/shuttle/intrepid/cockpit name = "Cockpit" + /area/shuttle/intrepid/quarters name = "Intrepid Crew Quarters" /area/shuttle/canary name = "Canary" requires_power = TRUE + +/area/shuttle/quark/cockpit + name = "Quark Cockpit" + requires_power = TRUE + +/area/shuttle/quark/cargo_hold + name = "Quark Cargo Hold" + requires_power = TRUE + // // SCCV Horizon Areas // diff --git a/maps/sccv_horizon/code/sccv_horizon_overmap.dm b/maps/sccv_horizon/code/sccv_horizon_overmap.dm index 24a3b0161d2..fff9f34f469 100644 --- a/maps/sccv_horizon/code/sccv_horizon_overmap.dm +++ b/maps/sccv_horizon/code/sccv_horizon_overmap.dm @@ -1,3 +1,8 @@ + +// +// ------------------------------------------- horizon +// + /obj/effect/overmap/visitable/ship/sccv_horizon class = "SCCV" designation = "Horizon" @@ -22,7 +27,8 @@ initial_restricted_waypoints = list( "Spark" = list("nav_hangar_mining"), //can't have random shuttles popping inside the ship "Intrepid" = list("nav_hangar_intrepid"), - "Canary" = list("nav_hangar_canary") + "Canary" = list("nav_hangar_canary"), + "Quark" = list("nav_hangar_quark"), ) initial_generic_waypoints = list( @@ -36,6 +42,7 @@ "nav_hangar_mining", "nav_hangar_intrepid", "nav_hangar_canary", + "nav_hangar_quark", "nav_cargo_shuttle_dock", "nav_horizon_hangar_1", "nav_burglar_hangar", @@ -52,6 +59,10 @@ skybox_image.pixel_y = rand(128,256) return skybox_image +// +// ------------------------------------------- intrepid +// + /obj/effect/overmap/visitable/ship/landable/intrepid name = "Intrepid" class = "SCCV" @@ -89,6 +100,10 @@ icon_keyboard = null circuit = null +// +// ------------------------------------------- spark +// + /obj/effect/overmap/visitable/ship/landable/mining_shuttle name = "Spark" class = "SCCV" @@ -126,6 +141,10 @@ icon_keyboard = null circuit = null +// +// ------------------------------------------- canary +// + /obj/effect/overmap/visitable/ship/landable/canary name = "Canary" class = "SCCV" @@ -175,3 +194,41 @@ icon_keyboard = null circuit = null +// +// ------------------------------------------- quark +// + +/obj/effect/overmap/visitable/ship/landable/quark + name = "Quark" + class = "SCCV" + designation = "Quark" + desc = "\ + A small-sized exploration shuttle manufactured by Hephaestus, the Celeste-class is commonly used by the corporations of the SCC. \ + Designed for short-term expeditions, it is entirely reliant on a bigger ship for supply and support. \ + This one's transponder identifies it as the SCCV Quark. \ + " + shuttle = "Quark" + icon_state = "pod" // <-------------- temporary, hopefully someone sprites it some day + moving_state = "pod_moving" + colors = list("#cfd4ff", "#78adf8") + // scanimage = "quark.png" // <-------------- hopefully someone sprites it some day + designer = "Hephaestus Industries" + volume = "15 meters length, 9 meters beam/width, 6 meters vertical height" + sizeclass = "Celeste-type Exploration Shuttlecraft" + shiptype = "Exploratory survey and scouting" + max_speed = 1/(3 SECONDS) + burn_delay = 2 SECONDS + vessel_mass = 3000 + fore_dir = SOUTH + vessel_size = SHIP_SIZE_TINY + +// /obj/effect/overmap/visitable/ship/landable/quark/get_skybox_representation() +// var/image/skybox_image = image('icons/skybox/subcapital_ships.dmi', "quark") +// skybox_image.pixel_x = rand(0,64) +// skybox_image.pixel_y = rand(128,256) // <---------- hopefully someone sprites it some day +// return skybox_image + +/obj/machinery/computer/shuttle_control/explore/terminal/quark + name = "\improper Quark control console" + shuttle_tag = "Quark" + req_access = list(ACCESS_XENOARCH, ACCESS_RESEARCH) diff --git a/maps/sccv_horizon/code/sccv_horizon_shuttles.dm b/maps/sccv_horizon/code/sccv_horizon_shuttles.dm index 5ea3a62bdd1..f6c48a615e6 100644 --- a/maps/sccv_horizon/code/sccv_horizon_shuttles.dm +++ b/maps/sccv_horizon/code/sccv_horizon_shuttles.dm @@ -142,7 +142,7 @@ name = "First Deck Canary Hangar Bay" landmark_tag = "nav_hangar_canary" docking_controller = "canary_dock" - base_area = /area/hangar/canary + base_area = /area/hangar/auxiliary base_turf = /turf/simulated/floor/plating /obj/effect/shuttle_landmark/canary/transit @@ -150,6 +150,30 @@ landmark_tag = "nav_transit_canary" base_turf = /turf/space/transit/north +// Quark +/datum/shuttle/autodock/overmap/quark + name = "Quark" + move_time = 20 + shuttle_area = list(/area/shuttle/quark/cockpit, /area/shuttle/quark/cargo_hold) + dock_target = "airlock_shuttle_quark" + current_location = "nav_hangar_quark" + landmark_transition = "nav_transit_quark" + range = 1 + fuel_consumption = 3 + logging_home_tag = "nav_hangar_quark" + +/obj/effect/shuttle_landmark/quark/hangar + name = "First Deck Quark Hangar Bay" + landmark_tag = "nav_hangar_quark" + docking_controller = "quark_dock" + base_area = /area/hangar/auxiliary + base_turf = /turf/simulated/floor/plating + +/obj/effect/shuttle_landmark/quark/transit + name = "In transit" + landmark_tag = "nav_transit_quark" + base_turf = /turf/space/transit/north + // Mining Shuttle /datum/shuttle/autodock/overmap/mining name = "Spark" diff --git a/maps/sccv_horizon/sccv_horizon.dmm b/maps/sccv_horizon/sccv_horizon.dmm index 05393dfea5f..997fa903b97 100644 --- a/maps/sccv_horizon/sccv_horizon.dmm +++ b/maps/sccv_horizon/sccv_horizon.dmm @@ -780,20 +780,6 @@ }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"aeJ" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/rnd/xenoarch_atrium) "aeT" = ( /obj/machinery/button/remote/blast_door{ dir = 1; @@ -1582,6 +1568,13 @@ icon_state = "dark_preview" }, /area/centcom/holding) +"akP" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/obj/machinery/alarm/west, +/turf/simulated/floor/tiled, +/area/hangar/auxiliary) "akR" = ( /obj/machinery/camera/network/reactor{ c_tag = "Engineering - Supermatter Reactor 1"; @@ -2020,6 +2013,27 @@ /obj/structure/filingcabinet/chestdrawer, /turf/simulated/floor/wood, /area/merchant_station) +"amU" = ( +/obj/machinery/door/airlock/external{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch/red, +/obj/effect/floor_decal/industrial/warning/full, +/obj/effect/map_effect/marker/airlock{ + master_tag = "airlock_shuttle_quark_aux"; + name = "airlock_shuttle_quark_aux"; + req_one_access = list(65,47,74) + }, +/obj/machinery/access_button{ + pixel_x = 18; + pixel_y = 29 + }, +/obj/effect/map_effect/marker_helper/airlock/interior, +/turf/simulated/floor/plating, +/area/shuttle/quark/cockpit) "amW" = ( /obj/item/storage/secure/safe{ pixel_x = 8; @@ -2455,9 +2469,6 @@ }, /turf/unsimulated/floor, /area/centcom/distress_prep) -"aqp" = ( -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/hangar/canary) "aqu" = ( /obj/effect/step_trigger/thrower/shuttle/northwest, /turf/template_noop, @@ -2712,20 +2723,6 @@ /obj/structure/lattice/catwalk/indoor, /turf/simulated/floor/plating, /area/engineering/bluespace_drive) -"asC" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/black, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/dark, -/area/hangar/auxiliary) "asK" = ( /obj/structure/railing/mapped{ dir = 8 @@ -2738,6 +2735,19 @@ "asO" = ( /turf/simulated/floor, /area/turret_protected/ai_upload_foyer) +"asY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/dark_green/diagonal, +/turf/simulated/floor/tiled, +/area/hangar/auxiliary) "atb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -3291,12 +3301,6 @@ /obj/structure/reagent_dispensers/watertank, /turf/simulated/floor/tiled, /area/merchant_station/warehouse) -"awX" = ( -/obj/machinery/shieldwallgen, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green, -/turf/simulated/floor/airless, -/area/hangar/canary) "axe" = ( /obj/structure/grille, /obj/machinery/door/firedoor, @@ -3540,6 +3544,12 @@ /obj/machinery/telecomms/server/presets/unused, /turf/simulated/floor/bluegrid, /area/tcommsat/chamber) +"ayB" = ( +/obj/machinery/computer/ship/helm/terminal{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/quark/cockpit) "ayE" = ( /obj/effect/floor_decal/industrial/warning, /obj/structure/railing/mapped, @@ -3689,6 +3699,13 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) +"azX" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/quark/cargo_hold) "aAe" = ( /turf/simulated/wall/r_wall, /area/hangar/intrepid) @@ -4797,6 +4814,12 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/longbow) +"aIs" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/hangar/auxiliary) "aIt" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 5 @@ -5240,6 +5263,13 @@ }, /turf/simulated/floor/plating, /area/rnd/xenoarch_atrium) +"aLw" = ( +/obj/effect/floor_decal/industrial/outline/research, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/quark/cargo_hold) "aLz" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/machinery/door/airlock/external, @@ -5929,6 +5959,18 @@ }, /turf/unsimulated/floor/plating, /area/centcom/ferry) +"aQw" = ( +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/shuttle/quark/cargo_hold) "aQy" = ( /obj/machinery/suit_cycler/captain, /obj/item/clothing/suit/space/void/captain, @@ -5941,6 +5983,18 @@ /obj/item/clothing/mask/gas/half, /turf/simulated/floor/wood, /area/crew_quarters/captain) +"aQF" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hangar/auxiliary) "aQI" = ( /obj/structure/bed/stool/chair/office/light{ dir = 4 @@ -5969,6 +6023,31 @@ }, /turf/simulated/floor, /area/maintenance/bridge) +"aQS" = ( +/obj/effect/floor_decal/corner/black{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/table/steel, +/obj/item/storage/box/flares{ + pixel_x = -6; + pixel_y = 11 + }, +/obj/item/storage/box/led_collars{ + pixel_x = 8; + pixel_y = 11 + }, +/obj/item/storage/box/flares{ + pixel_x = -6; + pixel_y = 2 + }, +/obj/item/storage/box/tethers{ + pixel_x = 8; + pixel_y = 2 + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/plating, +/area/hangar/auxiliary) "aQU" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -6296,6 +6375,22 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) +"aST" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/hallway/engineering) "aSW" = ( /obj/item/device/radio/intercom/south, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -6665,18 +6760,6 @@ /obj/structure/reagent_dispensers/water_cooler, /turf/simulated/floor/tiled, /area/horizon/security/lobby) -"aVU" = ( -/obj/structure/reagent_dispensers/extinguisher, -/obj/machinery/light/spot{ - dir = 1 - }, -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/firefighting_closet, -/obj/structure/extinguisher_cabinet/east, -/turf/simulated/floor/tiled, -/area/hangar/auxiliary) "aVV" = ( /obj/effect/floor_decal/corner_wide/yellow{ dir = 5 @@ -6925,6 +7008,16 @@ }, /turf/unsimulated/floor, /area/centcom/spawning) +"aXv" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/rnd/xenoarch_atrium) "aXy" = ( /obj/structure/lattice, /obj/structure/railing/mapped, @@ -8072,14 +8165,6 @@ /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bfs" = ( -/obj/machinery/camera/network/first_deck{ - c_tag = "First Deck - Hangar 15" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/floodlight, -/turf/simulated/floor/tiled/full, -/area/hangar/auxiliary) "bfA" = ( /obj/effect/floor_decal/industrial/warning, /obj/structure/tank_wall/nitrous_oxide{ @@ -8339,6 +8424,13 @@ }, /turf/unsimulated/floor, /area/centcom/distress_prep) +"bhO" = ( +/obj/structure/bed/stool/chair/shuttle, +/obj/effect/floor_decal/corner/purple{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/quark/cockpit) "bhR" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -8540,6 +8632,18 @@ }, /turf/simulated/floor/tiled/dark/full, /area/storage/secure) +"biK" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/hangar/auxiliary) "biM" = ( /obj/structure/window/shuttle/scc_space_ship, /obj/machinery/door/firedoor, @@ -9003,6 +9107,12 @@ /obj/effect/floor_decal/corner/brown/diagonal, /turf/simulated/floor/tiled, /area/operations/loading) +"blQ" = ( +/obj/effect/floor_decal/corner/black{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/hangar/auxiliary) "blT" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -9111,6 +9221,19 @@ /obj/effect/floor_decal/industrial/outline/grey, /turf/simulated/floor/tiled/dark, /area/horizon/security/evidence_storage) +"bmU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/light/spot{ + dir = 4 + }, +/obj/structure/sign/emergency/evacuation/pods{ + pixel_x = 32 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/hangar/auxiliary) "bng" = ( /obj/structure/lattice/catwalk/indoor/grate, /obj/machinery/alarm/west, @@ -9923,6 +10046,19 @@ /obj/random/pottedplant, /turf/simulated/floor/tiled, /area/horizon/hallway/deck_three/primary/starboard) +"btL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{ + frequency = 1380; + id_tag = "escape_pod_2_berth"; + pixel_x = 25; + tag_door = "escape_pod_2_berth_hatch" + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/hangar/auxiliary) "btO" = ( /turf/simulated/floor/holofloor/beach/sand{ dir = 1; @@ -10304,6 +10440,16 @@ }, /turf/simulated/floor/holofloor/carpet, /area/horizon/holodeck/source_dininghall) +"bwA" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/rnd/xenoarch_atrium) "bwI" = ( /turf/simulated/wall/shuttle/unique/tcfl{ icon_state = "13,0" @@ -10723,24 +10869,6 @@ /obj/structure/ship_weapon_dummy, /turf/simulated/open/airless, /area/template_noop) -"bAq" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/sign/emergency/evacuation{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hangar/auxiliary) "bAr" = ( /obj/structure/bed/stool/chair/office/bridge{ dir = 1 @@ -10833,21 +10961,6 @@ }, /turf/unsimulated/floor/plating, /area/centcom/distress_prep) -"bAM" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/light/spot{ - dir = 1 - }, -/obj/effect/shuttle_landmark/canary/hangar{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/hangar/canary) "bAO" = ( /turf/simulated/wall/r_wall, /area/horizon/security/interrogation/monitoring) @@ -10911,6 +11024,15 @@ }, /turf/simulated/floor/wood, /area/horizon/security/meeting_room) +"bBq" = ( +/obj/machinery/atmospherics/pipe/tank/carbon_dioxide/scc_shuttle{ + dir = 4 + }, +/obj/item/device/gps/stationary/sccv_quark{ + pixel_x = -23 + }, +/turf/simulated/floor/plating, +/area/shuttle/quark/cargo_hold) "bBA" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 10 @@ -11514,6 +11636,12 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) +"bFY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/wall/shuttle/scc, +/area/shuttle/quark/cockpit) "bFZ" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -11571,6 +11699,14 @@ }, /turf/simulated/floor/tiled/white, /area/hallway/medical/upper) +"bGq" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark/full, +/area/hangar/auxiliary) "bGu" = ( /obj/machinery/power/apc/north, /obj/structure/cable/green{ @@ -12212,6 +12348,13 @@ /obj/effect/floor_decal/corner/green/full, /turf/unsimulated/floor, /area/centcom/bar) +"bKI" = ( +/obj/effect/floor_decal/corner/black{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/hangar/auxiliary) "bKX" = ( /obj/effect/floor_decal/corner/green/diagonal, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -12227,6 +12370,15 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/crew_quarters/washroom/central) +"bLb" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/shuttle_landmark/quark/hangar{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/hangar/auxiliary) "bLe" = ( /obj/structure/bed/stool/chair/sofa/right/red{ dir = 4 @@ -13880,6 +14032,21 @@ }, /turf/simulated/floor/tiled/dark, /area/teleporter) +"bVW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/multi_tile, +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Hangar" + }, +/obj/effect/floor_decal/industrial/hatch_door/red{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenoarch_atrium) "bVZ" = ( /obj/effect/map_effect/window_spawner/full/reinforced/indestructible, /turf/unsimulated/floor/plating, @@ -14008,6 +14175,19 @@ }, /turf/simulated/floor/carpet/rubber, /area/hallway/primary/central_one) +"bWT" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/camera/network/research{ + c_tag = "Research - Xenoarchaeology Entrance"; + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/rnd/xenoarch_atrium) "bWW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -14149,12 +14329,6 @@ }, /turf/unsimulated/floor, /area/centcom/holding) -"bXH" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/hangar/canary) "bXK" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/effect/floor_decal/industrial/warning{ @@ -16002,6 +16176,23 @@ icon_state = "dark_preview" }, /area/centcom/holding) +"clS" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux, +/obj/effect/floor_decal/industrial/outline_door/red{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/map_effect/marker/airlock/shuttle{ + master_tag = "airlock_shuttle_quark"; + name = "airlock_shuttle_quark"; + req_one_access = list(65,47,74); + shuttle_tag = "Quark"; + cycle_to_external_air = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/quark/cargo_hold) "clT" = ( /obj/structure/lattice/catwalk/indoor, /turf/space/dynamic, @@ -16670,22 +16861,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/firing_range) -"cpU" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/light/spot{ - dir = 4 - }, -/obj/machinery/firealarm/east, -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hangar/auxiliary) "cpX" = ( /obj/structure/curtain/open/shower, /obj/machinery/shower{ @@ -17895,6 +18070,26 @@ /obj/machinery/disposal/small/south, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) +"cAY" = ( +/obj/effect/map_effect/window_spawner/full/shuttle/scc{ + spawn_firedoor = 1; + spawn_grille = 1 + }, +/obj/effect/landmark/entry_point/fore{ + name = "fore, cockpit" + }, +/turf/simulated/floor/plating, +/area/shuttle/quark/cockpit) +"cBb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_green/diagonal, +/turf/simulated/floor/tiled, +/area/hangar/auxiliary) "cBc" = ( /obj/machinery/light, /turf/unsimulated/floor{ @@ -17922,6 +18117,16 @@ /obj/item/tank/oxygen, /turf/simulated/floor/tiled/dark/full, /area/rnd/telesci) +"cBs" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/fuel, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/shuttle/quark/cargo_hold) "cBz" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 @@ -18011,10 +18216,6 @@ }, /turf/unsimulated/floor, /area/centcom/holding) -"cCq" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/airless, -/area/hangar/auxiliary) "cCt" = ( /obj/effect/floor_decal/industrial/outline/grey, /obj/structure/table/steel, @@ -18099,6 +18300,16 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/engineering/atmos/air) +"cCQ" = ( +/obj/structure/bed/stool/chair/shuttle{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/firealarm/south, +/turf/simulated/floor/tiled/dark, +/area/shuttle/quark/cockpit) "cCW" = ( /obj/item/modular_computer/console/preset/command{ dir = 4 @@ -18229,14 +18440,6 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, /area/horizon/custodial) -"cEv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/hangar/auxiliary) "cEy" = ( /obj/machinery/body_scanconsole{ dir = 8 @@ -18458,19 +18661,6 @@ }, /turf/space/dynamic, /area/horizon/exterior) -"cGd" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1386; - id_tag = "canary_dock"; - name = "\improper Canary docking port controller"; - pixel_y = 28; - tag_door = "canary_out" - }, -/turf/simulated/floor/plating, -/area/hangar/canary) "cGg" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -18630,6 +18820,29 @@ }, /turf/simulated/floor/tiled, /area/rnd/eva) +"cIk" = ( +/obj/machinery/door/airlock/external, +/obj/effect/floor_decal/industrial/hatch/red, +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/access_button{ + pixel_x = 28 + }, +/obj/effect/map_effect/marker/airlock/shuttle{ + master_tag = "airlock_shuttle_quark"; + name = "airlock_shuttle_quark"; + req_one_access = list(65,47,74); + shuttle_tag = "Quark"; + cycle_to_external_air = 1 + }, +/obj/effect/map_effect/marker_helper/airlock/interior, +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/turf/simulated/floor/plating, +/area/shuttle/quark/cargo_hold) "cIn" = ( /obj/effect/floor_decal/corner/lime{ dir = 10 @@ -19093,6 +19306,27 @@ }, /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_battlemonsters) +"cLJ" = ( +/obj/effect/floor_decal/corner_wide/purple{ + dir = 8 + }, +/obj/effect/floor_decal/corner_wide/purple{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenoarch_atrium) "cLQ" = ( /obj/structure/bed/stool/chair/office/bridge/pilot{ dir = 4 @@ -19217,20 +19451,6 @@ "cMK" = ( /turf/simulated/floor, /area/tdome/tdome1) -"cMM" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/light/spot{ - dir = 4; - must_start_working = 1 - }, -/turf/simulated/floor/tiled, -/area/hangar/canary) "cMN" = ( /turf/simulated/floor/tiled, /area/horizon/security/lobby) @@ -19378,6 +19598,12 @@ /obj/effect/decal/cleanable/spiderling_remains, /turf/simulated/floor/exoplanet/barren/raskara, /area/centcom/shared_dream) +"cOi" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/rnd/xenoarch_atrium) "cOk" = ( /obj/effect/floor_decal/spline/fancy/wood/cee{ dir = 4 @@ -19647,22 +19873,6 @@ /obj/structure/flora/ausbushes/leafybush, /turf/simulated/floor/exoplanet/grass, /area/centcom/shared_dream) -"cPT" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/light/spot{ - dir = 4 - }, -/obj/structure/sign/emergency/evacuation/pods{ - pixel_x = 32 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hangar/auxiliary) "cPU" = ( /obj/effect/landmark{ name = "Revenant" @@ -20373,21 +20583,6 @@ }, /turf/simulated/floor/tiled/dark, /area/bridge/aibunker) -"cVg" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/black{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/hangar/auxiliary) "cVi" = ( /turf/simulated/wall/r_wall, /area/bridge/supply) @@ -20543,6 +20738,16 @@ icon_state = "white" }, /area/antag/wizard) +"cWE" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/machinery/firealarm/north, +/turf/simulated/floor/tiled, +/area/hangar/auxiliary) "cWG" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -20629,12 +20834,6 @@ icon_state = "rub_carpet" }, /area/centcom/specops) -"cXw" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/hangar/canary) "cXC" = ( /obj/machinery/cryopod{ dir = 4 @@ -21196,6 +21395,22 @@ }, /turf/simulated/floor/marble, /area/horizon/holodeck/source_trinary) +"dcy" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/camera/network/quark{ + dir = 8; + c_tag = "Quark - Cargo Hold" + }, +/obj/structure/bed/handrail{ + dir = 8; + pixel_x = 2 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/quark/cargo_hold) "dcC" = ( /obj/structure/window/shuttle/scc_space_ship, /obj/structure/grille, @@ -21769,12 +21984,6 @@ }, /turf/simulated/floor/wood, /area/bridge/minibar) -"dgr" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/hangar/auxiliary) "dgv" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 @@ -22223,15 +22432,6 @@ }, /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/maintenance/wing/starboard/far) -"djn" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/hangar/canary) "djp" = ( /obj/structure/lattice/catwalk/indoor/grate, /obj/structure/cable{ @@ -22868,6 +23068,21 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/engineering/storage_eva) +"doJ" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/aux, +/obj/effect/floor_decal/industrial/outline_door/red, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/map_effect/marker/airlock/shuttle{ + master_tag = "airlock_shuttle_quark"; + name = "airlock_shuttle_quark"; + req_one_access = list(65,47,74); + shuttle_tag = "Quark"; + cycle_to_external_air = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/quark/cargo_hold) "doK" = ( /obj/effect/floor_decal/corner/lime/diagonal, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -23401,6 +23616,37 @@ /obj/effect/shuttle_landmark/lift/operations_second_deck, /turf/simulated/open, /area/operations/office) +"dst" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline_straight/red, +/obj/effect/floor_decal/industrial/outline_straight/red{ + dir = 4 + }, +/obj/machinery/airlock_sensor{ + pixel_x = 20; + dir = 8; + pixel_y = 6 + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + dir = 8; + pixel_y = -6; + pixel_x = 20 + }, +/obj/structure/bed/handrail{ + dir = 8; + pixel_x = 2 + }, +/obj/effect/map_effect/marker/airlock/shuttle{ + master_tag = "airlock_shuttle_quark"; + name = "airlock_shuttle_quark"; + req_one_access = list(65,47,74); + shuttle_tag = "Quark"; + cycle_to_external_air = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/quark/cargo_hold) "dsy" = ( /obj/effect/floor_decal/corner/dark_blue/full{ dir = 8 @@ -23619,14 +23865,6 @@ /obj/structure/sign/flag/scc/unmovable, /turf/simulated/wall/r_wall, /area/horizon/hallway/deck_three/primary/central) -"dtN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hangar/canary) "dtP" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -23655,6 +23893,26 @@ }, /turf/simulated/floor/tiled, /area/bridge/controlroom) +"dtQ" = ( +/obj/machinery/atmospherics/portables_connector/aux{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/quark/west, +/turf/simulated/floor/plating, +/area/shuttle/quark/cargo_hold) "dtT" = ( /obj/effect/floor_decal/industrial/warning{ dir = 5 @@ -25048,6 +25306,17 @@ /obj/machinery/firealarm/east, /turf/simulated/floor/tiled/white, /area/medical/exam) +"dEa" = ( +/obj/machinery/atmospherics/portables_connector/aux{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/effect/floor_decal/industrial/hatch_small/yellow, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/quark/cockpit) "dEc" = ( /obj/effect/floor_decal/corner/dark_green/diagonal, /obj/structure/cable/green{ @@ -25074,12 +25343,6 @@ icon_state = "beach" }, /area/horizon/holodeck/source_moghes) -"dEl" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/hangar/auxiliary) "dEy" = ( /obj/machinery/atmospherics/pipe/manifold/visible/cyan{ dir = 8 @@ -25819,17 +26082,6 @@ /obj/structure/railing/mapped, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck_control) -"dJJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/firealarm/west, -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hangar/canary) "dJM" = ( /obj/structure/lattice/catwalk, /obj/structure/railing/mapped, @@ -26879,10 +27131,6 @@ }, /turf/simulated/floor/tiled, /area/maintenance/wing/port/far) -"dTk" = ( -/obj/effect/shuttle_landmark/horizon/hangar2, -/turf/simulated/floor/plating, -/area/hangar/auxiliary) "dTq" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 9 @@ -27365,6 +27613,20 @@ /obj/structure/lattice/catwalk/indoor, /turf/simulated/open/airless, /area/horizon/exterior) +"dXn" = ( +/obj/machinery/camera/network/first_deck{ + c_tag = "First Deck - Hangar 13"; + dir = 8 + }, +/obj/structure/sign/emergency/evacuation{ + dir = 4; + pixel_x = 32 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/hangar/auxiliary) "dXz" = ( /obj/effect/floor_decal/spline/fancy/wood/cee{ dir = 8 @@ -27471,6 +27733,13 @@ }, /turf/simulated/floor/tiled, /area/hangar/auxiliary) +"dYq" = ( +/obj/machinery/firealarm/west, +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/corner/dark_green/full, +/obj/effect/floor_decal/industrial/outline/emergency_closet, +/turf/simulated/floor/tiled, +/area/hangar/auxiliary) "dYz" = ( /obj/effect/floor_decal/corner/brown/full, /obj/structure/bed/stool/chair/office/dark{ @@ -28200,6 +28469,18 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/operations/office) +"edS" = ( +/obj/effect/floor_decal/corner/black{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/hangar/auxiliary) "edU" = ( /obj/structure/table/wood, /obj/random/coin, @@ -29165,18 +29446,6 @@ }, /turf/simulated/open/airless, /area/horizon/exterior) -"ekm" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/effect/floor_decal/corner/black{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/hangar/canary) "ekp" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -29429,6 +29698,12 @@ }, /turf/unsimulated/floor/plating, /area/shuttle/syndicate_elite) +"elR" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/hangar/auxiliary) "elU" = ( /obj/structure/sink{ dir = 8; @@ -29483,6 +29758,17 @@ /obj/effect/map_effect/window_spawner/full/reinforced/firedoor, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/evidence_storage) +"emz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/sign/emergency/evacuation{ + dir = 4; + pixel_x = 32 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/hangar/auxiliary) "emA" = ( /obj/structure/closet/secure_closet/marooning_equipment, /obj/structure/disposalpipe/segment{ @@ -31036,6 +31322,28 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/hydroponics/garden) +"eyj" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/hallway/engineering) "eyu" = ( /obj/effect/floor_decal/spline/fancy/wood, /obj/item/device/radio/intercom/south, @@ -31324,6 +31632,18 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/engineering/lobby) +"eAU" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/shuttle_landmark/canary/hangar{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/hangar/auxiliary) "eAV" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/fake_object{ @@ -32386,6 +32706,15 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/full, /area/maintenance/research_port) +"eIl" = ( +/obj/machinery/iff_beacon/horizon/shuttle{ + pixel_y = -15 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/shuttle/quark/cockpit) "eIp" = ( /obj/effect/floor_decal/corner/dark_green/diagonal, /obj/machinery/light{ @@ -32754,6 +33083,9 @@ /obj/machinery/atmospherics/pipe/simple/visible/black, /turf/simulated/floor/plating, /area/engineering/atmos/air) +"eLC" = ( +/turf/simulated/floor/tiled, +/area/shuttle/quark/cockpit) "eLE" = ( /obj/effect/floor_decal/corner/red/full{ dir = 8 @@ -33124,21 +33456,6 @@ }, /turf/unsimulated/floor/plating, /area/shuttle/legion) -"eOR" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/black{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/hangar/auxiliary) "eOU" = ( /turf/simulated/floor/holofloor/beach/sand{ dir = 4; @@ -33281,6 +33598,28 @@ }, /turf/simulated/floor/tiled/white, /area/hallway/medical/upper) +"eQE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/outline_door/red, +/obj/effect/floor_decal/industrial/outline_straight/red{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline_straight/red{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/shuttle/quark/cargo_hold) "eQF" = ( /obj/structure/grille, /obj/machinery/door/blast/regular{ @@ -33967,6 +34306,17 @@ }, /turf/simulated/floor/plating, /area/hangar/intrepid) +"eVl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/effect/floor_decal/corner/dark_green/diagonal, +/turf/simulated/floor/tiled, +/area/hangar/auxiliary) "eVn" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 6 @@ -34338,15 +34688,6 @@ }, /turf/simulated/floor/plating, /area/horizon/hallway/deck_three/primary/port/docks) -"eYj" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/hangar/canary) "eYk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 @@ -37107,27 +37448,6 @@ }, /turf/simulated/floor/tiled, /area/rnd/xenobiology) -"fsf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/glass_research{ - dir = 4; - name = "Xenoarchaeology and Anomalous Materials"; - req_access = list(47) - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/full, -/area/rnd/xenoarch_atrium) "fsh" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -37485,6 +37805,25 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) +"fvx" = ( +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/obj/machinery/firealarm/south{ + dir = 4; + pixel_x = 22; + pixel_y = 0 + }, +/obj/structure/closet/secure_closet/guncabinet{ + name = "Expedition Weaponry"; + req_access = list(73,48,65) + }, +/obj/item/gun/energy/laser/shotgun/research, +/obj/item/gun/energy/laser/shotgun/research, +/obj/item/clothing/accessory/holster/utility/machete, +/obj/item/clothing/accessory/holster/utility/machete, +/obj/item/material/hatchet/machete/steel, +/obj/item/material/hatchet/machete/steel, +/turf/simulated/floor/tiled/dark, +/area/hangar/control) "fvG" = ( /obj/machinery/flasher{ id = "permflash" @@ -38082,6 +38421,33 @@ icon_state = "dark_preview" }, /area/centcom/holding) +"fBd" = ( +/obj/machinery/door/airlock/external, +/obj/effect/floor_decal/industrial/hatch/red, +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/access_button{ + pixel_x = -28; + pixel_y = 12; + dir = 1 + }, +/obj/effect/map_effect/marker/airlock/shuttle{ + master_tag = "airlock_shuttle_quark"; + name = "airlock_shuttle_quark"; + req_one_access = list(65,47,74); + shuttle_tag = "Quark"; + cycle_to_external_air = 1 + }, +/obj/effect/map_effect/marker_helper/airlock/exterior, +/obj/effect/landmark/entry_point/aft{ + name = "aft, airlock" + }, +/turf/simulated/floor/plating, +/area/shuttle/quark/cargo_hold) "fBf" = ( /obj/effect/floor_decal/corner_wide/yellow{ dir = 5 @@ -38425,6 +38791,15 @@ }, /turf/simulated/floor/tiled/dark, /area/storage/eva) +"fDV" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/engineering) "fDX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 @@ -39094,14 +39469,6 @@ "fID" = ( /turf/simulated/wall, /area/horizon/commissary) -"fIO" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/hangar/canary) "fIT" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 10 @@ -39391,6 +39758,11 @@ /obj/effect/map_effect/marker_helper/airlock/interior, /turf/simulated/floor/plating, /area/horizon/hallway/deck_three/primary/port/docks) +"fLi" = ( +/obj/machinery/floodlight, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/plating, +/area/hangar/auxiliary) "fLm" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -39507,15 +39879,6 @@ }, /turf/unsimulated/floor/plating, /area/centcom/legion) -"fLV" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 6 - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/engineering) "fLZ" = ( /obj/structure/mirror{ pixel_y = 32 @@ -39818,10 +40181,6 @@ }, /turf/simulated/floor/airless, /area/engineering/atmos) -"fOL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/carpet/rubber, -/area/rnd/xenoarch_atrium) "fOM" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 5 @@ -39874,18 +40233,6 @@ }, /turf/unsimulated/floor/plating, /area/centcom/spawning) -"fPd" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/effect/floor_decal/corner/black{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/hangar/canary) "fPk" = ( /obj/machinery/shieldgen, /obj/effect/floor_decal/industrial/outline/yellow, @@ -40819,6 +41166,14 @@ }, /turf/simulated/floor/tiled/white, /area/medical/gen_treatment) +"fWc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/hangar/auxiliary) "fWf" = ( /obj/machinery/atmospherics/pipe/simple/visible/black, /obj/machinery/atmospherics/pipe/simple/visible/purple{ @@ -41339,6 +41694,22 @@ }, /turf/simulated/floor/tiled, /area/engineering/lobby) +"fZF" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1386; + id_tag = "canary_dock"; + name = "\improper Canary docking port controller"; + pixel_y = 28; + tag_door = "canary_out" + }, +/turf/simulated/floor/tiled, +/area/hangar/auxiliary) "fZH" = ( /turf/simulated/wall/shuttle/unique/ert{ icon_state = "8,3" @@ -41671,6 +42042,12 @@ }, /turf/unsimulated/floor, /area/centcom/spawning) +"gbV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 8 + }, +/turf/simulated/wall/shuttle/scc, +/area/shuttle/quark/cargo_hold) "gbX" = ( /obj/effect/floor_decal/corner_wide/paleblue{ dir = 9 @@ -42003,15 +42380,6 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"gfc" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/engineering) "gfk" = ( /obj/effect/floor_decal/corner_wide/blue{ dir = 5 @@ -42207,13 +42575,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/rnd/isolation_b) -"ggS" = ( -/obj/machinery/firealarm/west, -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/corner/dark_green/full, -/obj/effect/floor_decal/industrial/outline/emergency_closet, -/turf/simulated/floor/tiled, -/area/hangar/canary) "ggZ" = ( /obj/structure/table/reinforced/wood, /obj/item/modular_computer/laptop/preset/command/captain, @@ -42234,24 +42595,6 @@ /obj/structure/disposalpipe/junction/yjunction, /turf/simulated/floor/tiled/white, /area/hallway/medical) -"ghn" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/rnd/xenoarch_atrium) "ghr" = ( /obj/effect/floor_decal/corner/yellow{ dir = 5 @@ -43026,20 +43369,15 @@ /obj/effect/floor_decal/industrial/loading/yellow, /turf/unsimulated/floor, /area/centcom/spawning) -"gnn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_command{ - dir = 1; - name = "Pilot Room"; - req_one_access = list(73,48) +"gno" = ( +/obj/effect/floor_decal/corner/black{ + dir = 10 }, -/obj/structure/cable/green{ - icon_state = "1-2" +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 1 }, -/turf/simulated/floor/tiled/full, -/area/hangar/control) +/turf/simulated/floor/tiled/dark, +/area/hangar/auxiliary) "gnv" = ( /obj/effect/floor_decal/spline/fancy/wood/cee, /obj/structure/railing/mapped{ @@ -44069,6 +44407,16 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/grauwolf) +"guF" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/hatch_door/red{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hangar/auxiliary) "guH" = ( /obj/effect/floor_decal/corner_wide/lime{ dir = 6 @@ -45879,6 +46227,18 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/horizon/security/holding_cell_a) +"gHG" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/effect/floor_decal/corner/dark_green, +/obj/effect/floor_decal/corner/black{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/hangar/auxiliary) "gHL" = ( /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/engineering/break_room) @@ -46084,6 +46444,15 @@ }, /turf/simulated/floor/tiled/dark/full, /area/medical/ward) +"gJo" = ( +/obj/structure/railing/mapped, +/obj/effect/floor_decal/corner/black{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/outline/emergency_closet, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/dark, +/area/hangar/auxiliary) "gJt" = ( /obj/effect/floor_decal/corner/dark_blue/full{ dir = 1 @@ -46229,6 +46598,10 @@ /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor/plating, /area/antag/raider) +"gKn" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/plating, +/area/hangar/auxiliary) "gKp" = ( /obj/structure/table/wood, /obj/effect/floor_decal/spline/fancy/wood{ @@ -46710,20 +47083,6 @@ /obj/machinery/door/firedoor/multi_tile, /turf/simulated/floor/tiled/dark, /area/hangar/intrepid) -"gOe" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/hangar/canary) "gOl" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 1 @@ -46819,6 +47178,21 @@ /obj/item/defibrillator/compact/loaded, /turf/simulated/floor/tiled, /area/medical/paramedic) +"gPe" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/obj/item/device/radio/intercom/expedition/hailing/east, +/obj/machinery/camera/network/intrepid{ + c_tag = "Intrepid - Crew Area"; + dir = 8 + }, +/obj/structure/bed/handrail{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/intrepid/quarters) "gPf" = ( /obj/machinery/camera/network/engineering{ c_tag = "Engineering - Starboard Combustion Chamber"; @@ -47030,6 +47404,15 @@ /obj/structure/lattice/catwalk/indoor, /turf/simulated/floor/plating, /area/engineering/bluespace_drive) +"gRi" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/hallway/engineering) "gRk" = ( /obj/structure/bed/stool/chair/shuttle{ dir = 4 @@ -47739,6 +48122,15 @@ /obj/structure/lattice, /turf/simulated/open/airless, /area/horizon/exterior) +"gVQ" = ( +/obj/effect/floor_decal/corner/black{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/hangar/auxiliary) "gVV" = ( /obj/machinery/camera/network/prison{ c_tag = "Security - Brig Communal Fore"; @@ -48353,6 +48745,36 @@ }, /turf/simulated/floor/tiled/dark, /area/centcom/spawning) +"haE" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ + dir = 4 + }, +/obj/item/hullbeacon/green{ + pixel_y = 6; + pixel_x = 8 + }, +/obj/structure/bed/handrail{ + dir = 8; + pixel_x = 2 + }, +/obj/machinery/airlock_sensor{ + pixel_x = 20; + dir = 8; + pixel_y = 6 + }, +/obj/effect/map_effect/marker_helper/airlock/exterior, +/obj/effect/map_effect/marker/airlock/shuttle{ + master_tag = "airlock_shuttle_quark"; + name = "airlock_shuttle_quark"; + req_one_access = list(65,47,74); + shuttle_tag = "Quark"; + cycle_to_external_air = 1 + }, +/turf/simulated/floor/reinforced, +/area/shuttle/quark/cargo_hold) "haN" = ( /obj/machinery/firealarm/south, /obj/effect/floor_decal/corner/lime/diagonal, @@ -48376,22 +48798,6 @@ }, /turf/simulated/floor/tiled, /area/rnd/hallway/secondary) -"haW" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/hallway/engineering) "haX" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -48523,14 +48929,6 @@ }, /turf/simulated/floor/lino, /area/horizon/cafeteria) -"hbU" = ( -/obj/machinery/shieldwallgen, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/airless, -/area/hangar/auxiliary) "hbY" = ( /obj/machinery/hologram/holopad, /obj/effect/overmap/visitable/ship/sccv_horizon, @@ -48539,6 +48937,16 @@ }, /turf/simulated/floor/tiled/dark, /area/bridge/controlroom) +"hca" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/effect/floor_decal/corner/black{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/hangar/auxiliary) "hcl" = ( /turf/simulated/floor/exoplanet/water/shallow{ dir = 5; @@ -49505,6 +49913,11 @@ icon_state = "dark_preview" }, /area/centcom/specops) +"hjH" = ( +/obj/machinery/portable_atmospherics/powered/scrubber, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/hangar/auxiliary) "hjO" = ( /obj/structure/cable/green{ icon_state = "1-8" @@ -49644,6 +50057,27 @@ /obj/structure/railing/mapped, /turf/simulated/floor/tiled, /area/operations/loading) +"hlz" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/closet/crate/plastic{ + name = "outdoor clothing crate" + }, +/obj/item/clothing/accessory/poncho/blue, +/obj/item/clothing/accessory/poncho/blue, +/obj/item/clothing/accessory/poncho/colorable/alt, +/obj/item/clothing/accessory/poncho/blue, +/obj/item/clothing/accessory/poncho/blue, +/obj/item/clothing/suit/storage/hooded/wintercoat/scc, +/obj/item/clothing/suit/storage/hooded/wintercoat/scc, +/obj/item/clothing/suit/storage/hooded/wintercoat/scc/alt, +/obj/item/clothing/suit/storage/hooded/wintercoat/scc, +/obj/item/clothing/suit/storage/hooded/wintercoat/scc, +/obj/machinery/alarm/north, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/hangar/auxiliary) "hlK" = ( /obj/structure/curtain/open/shower/security, /obj/effect/floor_decal/spline/fancy/wood/cee{ @@ -50376,6 +50810,14 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/shuttle/skipjack) +"hrg" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/hangar/auxiliary) "hrh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/railing/mapped{ @@ -50549,16 +50991,6 @@ /obj/structure/lattice/catwalk/indoor, /turf/simulated/floor/plating, /area/engineering/atmos/air) -"hso" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/engineering) "hst" = ( /obj/structure/shuttle/engine/router{ dir = 4 @@ -50714,6 +51146,18 @@ "htq" = ( /turf/simulated/wall, /area/maintenance/substation/security) +"htr" = ( +/obj/machinery/shipsensors/weak/scc_shuttle{ + pixel_y = -15 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/reinforced, +/area/shuttle/quark/cockpit) "hts" = ( /obj/structure/cable/green, /obj/effect/floor_decal/corner/dark_green{ @@ -50862,6 +51306,39 @@ }, /turf/simulated/floor/shuttle/dark_red, /area/shuttle/hapt) +"hun" = ( +/obj/effect/floor_decal/corner/black{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/table/steel, +/obj/item/device/radio{ + pixel_x = -7; + pixel_y = 5 + }, +/obj/item/device/radio{ + pixel_x = -7; + pixel_y = 5 + }, +/obj/item/device/radio{ + pixel_x = -7; + pixel_y = 5 + }, +/obj/item/device/radio{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/item/device/radio{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/item/device/radio{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/plating, +/area/hangar/auxiliary) "huo" = ( /obj/structure/shuttle/engine/propulsion{ dir = 1 @@ -50894,6 +51371,11 @@ }, /turf/simulated/floor/plating, /area/security/checkpoint2) +"huy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/hangar/auxiliary) "huB" = ( /obj/machinery/atmospherics/unary/freezer{ dir = 4; @@ -51180,6 +51662,22 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark/full, /area/engineering/engine_room/rust) +"hwM" = ( +/obj/machinery/door/airlock/external, +/obj/effect/floor_decal/industrial/hatch/red, +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 8 + }, +/obj/effect/map_effect/marker/airlock/shuttle{ + master_tag = "airlock_shuttle_quark"; + name = "airlock_shuttle_quark"; + req_one_access = list(65,47,74); + shuttle_tag = "Quark"; + cycle_to_external_air = 1 + }, +/obj/effect/map_effect/marker_helper/airlock/interior, +/turf/simulated/floor/plating, +/area/shuttle/quark/cargo_hold) "hwU" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -51265,15 +51763,6 @@ "hxi" = ( /turf/simulated/wall, /area/hallway/medical/upper) -"hxj" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/hangar/canary) "hxl" = ( /obj/effect/floor_decal/corner/brown/full{ dir = 8 @@ -51725,12 +52214,6 @@ }, /turf/simulated/floor/tiled/dark, /area/engineering/gravity_gen) -"hAZ" = ( -/obj/machinery/shieldwallgen, -/obj/structure/cable/green, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/airless, -/area/hangar/canary) "hBa" = ( /obj/structure/table/wood, /obj/item/device/taperecorder, @@ -52448,6 +52931,11 @@ /obj/structure/bookcase/manuals/xenoarchaeology, /turf/simulated/floor/tiled/dark, /area/rnd/xenoarch_atrium) +"hGU" = ( +/obj/machinery/hologram/holopad/long_range, +/obj/effect/overmap/visitable/ship/landable/quark, +/turf/simulated/floor/tiled/dark, +/area/shuttle/quark/cockpit) "hGW" = ( /turf/unsimulated/floor{ icon_state = "white" @@ -52510,6 +52998,16 @@ }, /turf/simulated/floor/tiled, /area/operations/lobby) +"hHq" = ( +/obj/structure/shuttle/engine/heater{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/shuttle/quark/cargo_hold) "hHv" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -52598,18 +53096,6 @@ }, /turf/simulated/floor/carpet, /area/lawoffice/representative_two) -"hHV" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner_wide/yellow/full{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/engineering) "hHY" = ( /obj/structure/table/reinforced, /obj/item/storage/box/testpins{ @@ -53184,6 +53670,13 @@ }, /turf/simulated/floor/tiled, /area/security/vacantoffice) +"hMA" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/survey_probe{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/hangar/auxiliary) "hMC" = ( /obj/effect/floor_decal/industrial/warning{ dir = 6 @@ -53461,12 +53954,33 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/captain) +"hOL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/hangar/auxiliary) "hON" = ( /obj/structure/heavy_vehicle_frame, /obj/machinery/mech_recharger, /obj/effect/floor_decal/spline/plain, /turf/simulated/floor/carpet/rubber, /area/antag/jockey) +"hOP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/camera/network/first_deck{ + c_tag = "First Deck - Hangar 14"; + dir = 8 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/hangar/auxiliary) "hOQ" = ( /obj/effect/floor_decal/corner/grey/diagonal{ dir = 4 @@ -54071,6 +54585,18 @@ /obj/machinery/atmospherics/pipe/simple/visible/black, /turf/simulated/floor/plating, /area/engineering/atmos/air) +"hTe" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/structure/sign/emergency/evacuation{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hangar/auxiliary) "hTf" = ( /obj/structure/bed/stool/chair/padded/black{ dir = 1 @@ -54680,6 +55206,21 @@ }, /turf/simulated/floor/tiled, /area/operations/lobby) +"hYw" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "quark_dock"; + name = "\improper Quark docking port controller"; + pixel_y = 28 + }, +/turf/simulated/floor/tiled, +/area/hangar/auxiliary) "hYy" = ( /turf/simulated/floor/tiled/dark, /area/hangar/intrepid) @@ -55200,6 +55741,24 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) +"idc" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/rnd/xenoarch_atrium) "idd" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 4 @@ -55591,13 +56150,6 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/full, /area/teleporter) -"ifL" = ( -/obj/structure/platform_stairs/full, -/obj/structure/platform{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/hangar/auxiliary) "ifN" = ( /obj/structure/railing/mapped{ dir = 8 @@ -55612,20 +56164,6 @@ icon_state = "wood" }, /area/centcom/spawning) -"ifP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/yellow{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/light/spot{ - dir = 8; - must_start_working = 1 - }, -/turf/simulated/floor/tiled, -/area/hangar/canary) "ifS" = ( /obj/machinery/door/firedoor, /obj/structure/cable/green{ @@ -57417,6 +57955,10 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/dark, /area/maintenance/wing/port) +"itX" = ( +/obj/effect/floor_decal/corner/black, +/turf/simulated/floor/tiled/dark, +/area/hangar/auxiliary) "iud" = ( /obj/effect/floor_decal/industrial/warning, /obj/effect/decal/cleanable/dirt, @@ -57676,6 +58218,18 @@ /obj/effect/map_effect/window_spawner/full/reinforced/indestructible, /turf/unsimulated/floor/plating, /area/antag/raider) +"iwr" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner_wide/yellow/full{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/engineering) "iwI" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -58590,15 +59144,6 @@ }, /turf/simulated/floor/tiled/white, /area/medical/pharmacy) -"iCI" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/hangar/canary) "iCO" = ( /obj/structure/cable{ icon_state = "0-2" @@ -59185,16 +59730,15 @@ /obj/effect/decal/warning_stripes, /turf/unsimulated/floor, /area/antag/loner) -"iHM" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +"iHL" = ( +/obj/effect/floor_decal/corner/black{ + dir = 9 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ +/obj/effect/floor_decal/industrial/loading/yellow{ dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, /area/hangar/auxiliary) "iHP" = ( /obj/effect/landmark{ @@ -59278,6 +59822,15 @@ }, /turf/simulated/floor/plating, /area/maintenance/wing/starboard) +"iIF" = ( +/obj/machinery/firealarm/east, +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/emergency_closet, +/turf/simulated/floor/tiled, +/area/hangar/auxiliary) "iII" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/maintenance_hatch{ @@ -59994,6 +60547,15 @@ }, /turf/simulated/floor/shuttle/black, /area/shuttle/hapt) +"iNg" = ( +/obj/effect/floor_decal/corner/black{ + dir = 6 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/hangar/auxiliary) "iNi" = ( /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, @@ -60019,6 +60581,18 @@ }, /turf/simulated/floor, /area/tdome/tdome2) +"iNG" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/obj/structure/extinguisher_cabinet/west, +/turf/simulated/floor/tiled, +/area/hangar/auxiliary) "iNN" = ( /obj/effect/map_effect/window_spawner/full/reinforced/indestructible, /turf/unsimulated/floor/plating, @@ -60094,19 +60668,6 @@ /obj/item/device/lightreplacer, /turf/simulated/floor/tiled, /area/bridge/bridge_crew) -"iOn" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/black{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/hangar/auxiliary) "iOs" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -61763,6 +62324,11 @@ temperature = 278 }, /area/turret_protected/ai) +"jab" = ( +/obj/effect/floor_decal/industrial/outline/emergency_closet, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/dark, +/area/hangar/auxiliary) "jak" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -62749,18 +63315,6 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/storage/primary) -"jhH" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_command{ - dir = 4; - name = "Canary Hangar"; - req_one_access = list(73) - }, -/turf/simulated/floor/tiled/dark/full, -/area/hangar/control) "jhN" = ( /obj/effect/floor_decal/corner/grey{ dir = 6 @@ -64123,6 +64677,13 @@ }, /turf/simulated/floor/exoplanet/snow, /area/centcom/shared_dream) +"jrB" = ( +/obj/effect/floor_decal/industrial/outline/research, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/quark/cargo_hold) "jrD" = ( /obj/structure/bed/stool/padded/brown{ dir = 4 @@ -65124,6 +65685,12 @@ /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/wood/yew, /area/centcom/shared_dream) +"jyG" = ( +/obj/effect/landmark/entry_point/port{ + name = "port, rear" + }, +/turf/simulated/wall/shuttle/scc, +/area/shuttle/quark/cargo_hold) "jyH" = ( /obj/effect/floor_decal/corner_wide/purple{ dir = 9 @@ -66508,19 +67075,6 @@ "jJb" = ( /turf/simulated/floor/tiled/dark, /area/engineering/gravity_gen) -"jJc" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/effect/floor_decal/corner/black{ - dir = 9 - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/machinery/power/apc/low/north, -/turf/simulated/floor/tiled/dark, -/area/hangar/canary) "jJm" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -66606,6 +67160,15 @@ }, /turf/simulated/floor/plating, /area/maintenance/wing/port/far) +"jJN" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/bed/handrail{ + pixel_y = 2 + }, +/turf/simulated/floor/reinforced, +/area/shuttle/quark/cargo_hold) "jJQ" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -68955,17 +69518,6 @@ }, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_emptycourt) -"kcg" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hangar/canary) "kcj" = ( /obj/effect/floor_decal/corner/grey{ dir = 5 @@ -69239,6 +69791,24 @@ /obj/structure/lattice, /turf/space/dynamic, /area/horizon/exterior) +"kdB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/outline_door/red{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline_straight/red{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/shuttle/quark/cockpit) "kdD" = ( /obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 6 @@ -69743,12 +70313,6 @@ }, /turf/simulated/floor/wood, /area/journalistoffice) -"kgC" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/wall/r_wall, -/area/hangar/canary) "kgN" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -69862,6 +70426,18 @@ /obj/structure/window/reinforced/holowindow, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_boxingcourt) +"khF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/firealarm/west, +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hangar/auxiliary) "khK" = ( /obj/effect/floor_decal/corner/brown{ dir = 4 @@ -70271,6 +70847,22 @@ }, /turf/space/transit/north, /area/template_noop) +"kkQ" = ( +/obj/effect/shuttle_landmark/quark/transit{ + dir = 1 + }, +/obj/effect/step_trigger/teleporter/random{ + affect_ghosts = 1; + name = "escapeshuttle_leave"; + teleport_x = 25; + teleport_x_offset = 245; + teleport_y = 25; + teleport_y_offset = 245; + teleport_z = 6; + teleport_z_offset = 6 + }, +/turf/space/transit/north, +/area/template_noop) "kkS" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -70829,14 +71421,6 @@ "koP" = ( /turf/unsimulated/mineral/asteroid, /area/antag/raider) -"koQ" = ( -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/hangar/auxiliary) "koR" = ( /obj/effect/floor_decal/industrial/outline/medical, /obj/structure/table/standard, @@ -71124,6 +71708,21 @@ /obj/item/tank/oxygen, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/head_of_security) +"krx" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/closet/crate, +/obj/item/clothing/suit/space/emergency, +/obj/item/tank/air, +/obj/item/clothing/head/helmet/space/emergency, +/obj/item/storage/toolbox/emergency, +/obj/item/clothing/suit/space/emergency, +/obj/item/tank/air, +/obj/item/clothing/head/helmet/space/emergency, +/turf/simulated/floor/tiled/dark, +/area/shuttle/intrepid/quarters) "krG" = ( /obj/structure/shuttle_part/scc/scout{ density = 0; @@ -71770,26 +72369,6 @@ }, /turf/simulated/floor/tiled, /area/bridge/controlroom) -"kvE" = ( -/obj/structure/closet/secure_closet/guncabinet{ - name = "Emergency Weaponry"; - req_access = list(73) - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/security, -/obj/item/gun/energy/laser/shotgun/research, -/obj/item/gun/energy/laser/shotgun/research, -/obj/item/clothing/accessory/holster/utility/machete, -/obj/item/clothing/accessory/holster/utility/machete, -/obj/item/material/hatchet/machete/steel, -/obj/item/material/hatchet/machete/steel, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/quarters) "kvJ" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -72280,19 +72859,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/full, /area/horizon/library) -"kzr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/hangar/auxiliary) "kzs" = ( /turf/simulated/floor/tiled/full, /area/hallway/primary/aft) @@ -72330,18 +72896,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/aux, /turf/simulated/floor/plating, /area/maintenance/research_port) -"kzJ" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/obj/structure/extinguisher_cabinet/west, -/turf/simulated/floor/tiled, -/area/hangar/canary) "kzL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 @@ -72565,6 +73119,12 @@ dir = 5 }, /area/antag/raider) +"kBz" = ( +/obj/effect/floor_decal/corner/purple/full{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/quark/cockpit) "kBD" = ( /turf/simulated/floor/tiled/white, /area/hallway/medical) @@ -72794,6 +73354,16 @@ }, /turf/simulated/floor, /area/tdome/tdome2) +"kDw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/carpet/rubber, +/area/rnd/xenoarch_atrium) "kDx" = ( /obj/structure/shuttle_part/scc/scout{ icon_state = "7,4" @@ -72821,20 +73391,6 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology) -"kDE" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/camera/network/first_deck{ - c_tag = "First Deck - Hangar 14"; - dir = 8 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hangar/auxiliary) "kDF" = ( /obj/machinery/atmospherics/omni/filter{ name = "oxygen filter"; @@ -73193,6 +73749,16 @@ }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) +"kFX" = ( +/obj/structure/shuttle/engine/heater{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/shuttle/quark/cargo_hold) "kGf" = ( /obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, /turf/simulated/floor/tiled/dark/full, @@ -73527,16 +74093,6 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/unsimulated/floor, /area/centcom/spawning) -"kIz" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/structure/extinguisher_cabinet/north, -/turf/simulated/floor/tiled, -/area/hangar/auxiliary) "kIE" = ( /obj/effect/floor_decal/spline/plain, /obj/structure/railing/mapped{ @@ -75109,6 +75665,12 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/maintenance/engineering) +"kVq" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/effect/floor_decal/corner/dark_green/diagonal, +/turf/simulated/floor/tiled, +/area/hangar/auxiliary) "kVu" = ( /obj/effect/map_effect/marker/airlock/shuttle{ master_tag = "airlock_shuttle_spark"; @@ -75700,6 +76262,13 @@ }, /turf/simulated/floor/carpet/art, /area/crew_quarters/lounge) +"laP" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/obj/machinery/alarm/east, +/turf/simulated/floor/tiled, +/area/hangar/auxiliary) "laQ" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/door/blast/odin/open{ @@ -76012,6 +76581,15 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/unsimulated/floor, /area/antag/mercenary) +"ldo" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hangar/auxiliary) "ldt" = ( /turf/unsimulated/wall/darkshuttlewall, /area/tdome/tdome1) @@ -76288,15 +76866,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/warden) -"lfj" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hangar/canary) "lfk" = ( /obj/machinery/holosign/surgery{ id = 2 @@ -76951,25 +77520,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/hallway/primary/central_two) -"ljM" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/glass_command{ - dir = 1; - name = "Canary Hangar"; - req_one_access = list(73) - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular/open{ - dir = 4; - id = "hangarlockdown"; - name = "Hangar Lockdown" - }, -/turf/simulated/floor/tiled/dark/full, -/area/hangar/canary) "ljW" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 @@ -77091,6 +77641,14 @@ /obj/item/hullbeacon/green, /turf/simulated/floor/tiled/dark/airless, /area/horizon/exterior) +"llM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hangar/auxiliary) "llQ" = ( /obj/item/modular_computer/console/preset/security{ dir = 8 @@ -77105,6 +77663,28 @@ }, /turf/simulated/floor/tiled, /area/hallway/engineering/rust) +"llY" = ( +/obj/effect/floor_decal/industrial/outline/research, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/machinery/airlock_sensor/airlock_interior{ + pixel_x = -5; + pixel_y = 24 + }, +/obj/effect/map_effect/marker/airlock/shuttle{ + master_tag = "airlock_shuttle_quark"; + name = "airlock_shuttle_quark"; + req_one_access = list(65,47,74); + shuttle_tag = "Quark"; + cycle_to_external_air = 1 + }, +/obj/effect/map_effect/marker_helper/airlock/interior, +/obj/structure/bed/handrail{ + pixel_y = 2 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/quark/cargo_hold) "llZ" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 8 @@ -77146,6 +77726,15 @@ "lms" = ( /turf/simulated/floor, /area/tdome/tdome2) +"lmv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hangar/auxiliary) "lmF" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 4 @@ -77354,13 +77943,6 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck_control/beta) -"loq" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/obj/machinery/alarm/west, -/turf/simulated/floor/tiled, -/area/hangar/canary) "los" = ( /obj/machinery/atmospherics/pipe/manifold/visible{ dir = 1 @@ -77473,6 +78055,19 @@ /obj/machinery/door/firedoor, /turf/simulated/floor, /area/horizon/maintenance/deck_three/aft/starboard) +"lpp" = ( +/obj/structure/closet/walllocker/medical{ + pixel_x = 32 + }, +/obj/effect/floor_decal/industrial/outline/medical, +/obj/item/stack/medical/bruise_pack, +/obj/item/stack/medical/bruise_pack, +/obj/item/stack/medical/ointment, +/obj/item/stack/medical/ointment, +/obj/item/reagent_containers/hypospray/autoinjector/inaprovaline, +/obj/item/reagent_containers/hypospray/autoinjector/inaprovaline, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenoarch_atrium) "lpu" = ( /obj/structure/table/reinforced, /obj/item/clothing/head/bandana/hydro{ @@ -77866,6 +78461,14 @@ }, /turf/simulated/floor/carpet/magenta, /area/horizon/holodeck/source_cafe) +"lsi" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/extinguisher_cabinet/north, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/hangar/auxiliary) "lsl" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 1 @@ -77949,6 +78552,22 @@ }, /turf/simulated/open, /area/horizon/custodial/disposals) +"lsQ" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_command{ + dir = 4; + name = "Pilot Room"; + req_one_access = list(73,48,65) + }, +/obj/machinery/door/blast/regular/open{ + id = "hangarlockdown"; + name = "Hangar Lockdown" + }, +/turf/simulated/floor/tiled/dark/full, +/area/hangar/control) "lsY" = ( /obj/structure/cable{ icon_state = "4-8" @@ -78039,12 +78658,6 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/unsimulated/floor/plating, /area/centcom/legion) -"ltR" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hangar/canary) "ltT" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -79086,6 +79699,19 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/captain) +"lBZ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/light/spot{ + dir = 1 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/hangar/auxiliary) "lCe" = ( /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, @@ -79295,6 +79921,13 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/full, /area/horizon/security/hallway) +"lDO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hangar/auxiliary) "lDP" = ( /obj/effect/decal/fake_object{ dir = 4; @@ -79750,16 +80383,6 @@ /obj/effect/floor_decal/industrial/outline/operations, /turf/simulated/floor/tiled/dark/full, /area/engineering/atmos/propulsion/starboard) -"lGb" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/rnd/xenoarch_atrium) "lGc" = ( /obj/structure/sink/kitchen{ dir = 8; @@ -80161,6 +80784,21 @@ /obj/machinery/newscaster/east, /turf/simulated/floor/tiled/dark, /area/engineering/break_room) +"lIZ" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/closet/crate/plastic{ + name = "folding chairs and tables crate" + }, +/obj/item/material/folding_table, +/obj/item/material/folding_table, +/obj/item/material/folding_table, +/obj/item/material/folding_table, +/obj/item/material/stool/chair/folding/camping, +/obj/item/material/stool/chair/folding/camping, +/obj/item/material/stool/chair/folding/camping, +/obj/item/material/stool/chair/folding/camping, +/turf/simulated/floor/plating, +/area/hangar/auxiliary) "lJb" = ( /obj/machinery/door/airlock/external{ dir = 4; @@ -81001,13 +81639,6 @@ }, /turf/simulated/floor/plating, /area/maintenance/wing/starboard) -"lOT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/carpet/rubber, -/area/rnd/xenoarch_atrium) "lPe" = ( /obj/structure/table/wood, /turf/simulated/floor/holofloor/lino, @@ -81571,15 +82202,6 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"lTg" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/hangar/canary) "lTo" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/door/firedoor, @@ -81662,18 +82284,6 @@ }, /turf/simulated/wall, /area/maintenance/wing/port/far) -"lTU" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/effect/floor_decal/corner/black{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/hangar/canary) "lTW" = ( /turf/simulated/floor/holofloor/desert{ name = "dirt" @@ -82002,6 +82612,13 @@ /obj/machinery/door/window/northright, /turf/simulated/floor/tiled, /area/maintenance/wing/starboard/far) +"lWk" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/dark_green/diagonal, +/turf/simulated/floor/tiled, +/area/hangar/auxiliary) "lWn" = ( /obj/machinery/alarm/north, /obj/random/loot, @@ -82869,17 +83486,6 @@ /obj/structure/flora/ausbushes/fullgrass, /turf/simulated/floor/exoplanet/grass/grove, /area/centcom/shared_dream) -"mdH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/hangar/canary) "mdL" = ( /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/horizon/hydroponics/lower) @@ -83134,6 +83740,14 @@ /obj/random/loot, /turf/simulated/floor, /area/maintenance/engineering_ladder) +"mfw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/carpet/rubber, +/area/rnd/xenoarch_atrium) "mfI" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 8 @@ -83158,6 +83772,25 @@ }, /turf/unsimulated/floor/plating, /area/shuttle/transport1) +"mgm" = ( +/obj/machinery/door/airlock/external{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch/red, +/obj/effect/floor_decal/industrial/warning/full, +/obj/machinery/access_button{ + pixel_x = -12; + pixel_y = 28; + dir = 8 + }, +/obj/effect/map_effect/marker/airlock{ + master_tag = "airlock_shuttle_quark_aux"; + name = "airlock_shuttle_quark_aux"; + req_one_access = list(65,47,74) + }, +/obj/effect/map_effect/marker_helper/airlock/exterior, +/turf/simulated/floor/plating, +/area/shuttle/quark/cockpit) "mgn" = ( /obj/machinery/power/terminal{ dir = 1 @@ -83299,17 +83932,6 @@ }, /turf/simulated/floor/plating, /area/engineering/rust_office) -"mhq" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/effect/floor_decal/corner/black{ - dir = 6 - }, -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/industrial/outline/emergency_closet, -/turf/simulated/floor/tiled/dark, -/area/hangar/canary) "mhr" = ( /obj/machinery/requests_console/north{ department = "Atmospherics"; @@ -83522,15 +84144,6 @@ }, /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/engineering/atmos/air) -"mio" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/effect/floor_decal/corner/black{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/hangar/canary) "mis" = ( /obj/structure/table/fancy/black, /obj/machinery/light{ @@ -83834,11 +84447,6 @@ "mkV" = ( /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_theatre) -"mlc" = ( -/turf/unsimulated/wall/fakepdoor{ - dir = 4 - }, -/area/hangar/canary) "mlr" = ( /obj/structure/grille, /obj/machinery/door/firedoor, @@ -84011,6 +84619,24 @@ }, /turf/simulated/wall, /area/maintenance/wing/starboard) +"mmm" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/effect/floor_decal/corner/black{ + dir = 6 + }, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/effect/floor_decal/corner/dark_green{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/camera/network/first_deck{ + c_tag = "First Deck - Hangar 12"; + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/hangar/auxiliary) "mms" = ( /obj/machinery/camera/network/prison{ c_tag = "Security - Brig Communal Starboard" @@ -84026,6 +84652,16 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/brig) +"mmy" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/engineering) "mmA" = ( /obj/effect/floor_decal/corner/dark_blue/full{ dir = 4 @@ -84530,6 +85166,21 @@ }, /turf/simulated/floor/tiled/white, /area/centcom/shared_dream) +"mpQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/hatch_door/red{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hangar/auxiliary) "mpS" = ( /obj/structure/cable{ icon_state = "4-8" @@ -84993,22 +85644,6 @@ /obj/machinery/alarm/north, /turf/simulated/floor/carpet/rubber, /area/rnd/lab) -"mtp" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{ - frequency = 1380; - id_tag = "escape_pod_2_berth"; - pixel_x = 25; - tag_door = "escape_pod_2_berth_hatch" - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hangar/auxiliary) "mtr" = ( /obj/structure/closet/secure_closet/cabinet/beer/horizon, /obj/machinery/camera/network/service{ @@ -85269,6 +85904,11 @@ }, /turf/simulated/floor/tiled/dark, /area/engineering/aft_airlock) +"mvm" = ( +/obj/machinery/portable_atmospherics/powered/scrubber, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/plating, +/area/hangar/auxiliary) "mvn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -85762,6 +86402,12 @@ }, /turf/simulated/floor/tiled/dark/full, /area/shuttle/canary) +"mzh" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/shuttle/quark/cockpit) "mzn" = ( /obj/machinery/button/remote/airlock{ id = "xeno_entrance_ext"; @@ -86476,25 +87122,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/shuttle/intrepid/cockpit) -"mFu" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{ - dir = 8; - frequency = 1380; - id_tag = "escape_pod_1_berth"; - pixel_x = 25; - tag_door = "escape_pod_1_berth_hatch" - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hangar/auxiliary) "mFv" = ( /obj/structure/holostool, /turf/simulated/floor/wood/maple, @@ -86971,28 +87598,6 @@ /obj/machinery/atmospherics/unary/engine/scc_shuttle, /turf/simulated/floor/plating, /area/shuttle/canary) -"mJN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/firealarm/west, -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hangar/auxiliary) -"mJQ" = ( -/obj/item/reagent_containers/glass/bucket{ - pixel_x = -11; - pixel_y = -5 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/carpet/rubber, -/area/rnd/xenoarch_atrium) "mKb" = ( /obj/structure/sign/fire{ name = "\improper DANGER: COMBUSTION CHAMBER sign"; @@ -87067,15 +87672,6 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/skipjack) -"mKG" = ( -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/obj/machinery/firealarm/south{ - dir = 4; - pixel_x = 22; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/hangar/control) "mKW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -87505,15 +88101,6 @@ }, /turf/simulated/floor/tiled/dark, /area/bridge/aibunker) -"mOv" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/effect/floor_decal/corner/black{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/hangar/canary) "mOA" = ( /obj/effect/floor_decal/corner/dark_blue/full{ dir = 1 @@ -87630,6 +88217,14 @@ /obj/machinery/light/small/emergency, /turf/simulated/floor/plating, /area/maintenance/wing/starboard) +"mPQ" = ( +/obj/machinery/light/spot{ + dir = 1 + }, +/obj/machinery/floodlight, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/plating, +/area/hangar/auxiliary) "mPR" = ( /obj/machinery/light{ dir = 8 @@ -87717,17 +88312,6 @@ }, /turf/space/dynamic, /area/antag/raider) -"mQB" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/obj/machinery/alarm/east, -/obj/structure/platform, -/turf/simulated/floor/tiled, -/area/hangar/auxiliary) "mQC" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -87837,23 +88421,6 @@ }, /turf/simulated/floor/plating, /area/hangar/intrepid) -"mRt" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/camera/network/first_deck{ - c_tag = "First Deck - Hangar 13"; - dir = 8 - }, -/obj/structure/sign/emergency/evacuation{ - dir = 4; - pixel_x = 32 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hangar/auxiliary) "mRu" = ( /obj/machinery/light/small{ dir = 8 @@ -87941,22 +88508,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/crew_quarters/cryo/living_quarters_lift) -"mSq" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/railing/mapped, -/obj/effect/floor_decal/corner/black{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/hangar/auxiliary) "mSw" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 10 @@ -87978,20 +88529,6 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/blue, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"mSQ" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/sign/emergency/evacuation{ - dir = 4; - pixel_x = 32 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hangar/auxiliary) "mSS" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/closet/emcloset{ @@ -88065,6 +88602,22 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/maintenance/wing/port/far) +"mTJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/alarm/east, +/obj/structure/closet/crate/plastic, +/obj/item/storage/bag/inflatable, +/obj/item/storage/box/flares, +/obj/item/stack/rods/full, +/obj/item/storage/toolbox/mechanical, +/obj/random/tool, +/turf/simulated/floor/plating, +/area/shuttle/quark/cargo_hold) "mTK" = ( /obj/structure/shuttle_part/ert{ icon_state = "0,0"; @@ -88172,6 +88725,23 @@ /obj/effect/floor_decal/spline/plain, /turf/simulated/floor/tiled/dark, /area/engineering/break_room) +"mUE" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/item/hullbeacon/red{ + pixel_x = -8; + pixel_y = 6 + }, +/obj/structure/bed/handrail{ + dir = 4; + pixel_x = -2 + }, +/obj/machinery/atmospherics/unary/outlet_injector/scrubber{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/shuttle/quark/cockpit) "mUI" = ( /obj/effect/floor_decal/corner/dark_blue/full{ dir = 1 @@ -88296,6 +88866,18 @@ }, /turf/simulated/floor/holofloor/grass, /area/horizon/holodeck/source_wildlife) +"mVB" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/effect/floor_decal/corner/black{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/hangar/auxiliary) "mVE" = ( /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/crew_quarters/lounge/secondary) @@ -88489,9 +89071,6 @@ icon_state = "dark_preview" }, /area/centcom/specops) -"mWR" = ( -/turf/simulated/floor/plating, -/area/hangar/canary) "mWT" = ( /obj/structure/sign/flag/nanotrasen/large/north, /obj/structure/bed/stool/chair/office/dark{ @@ -89377,18 +89956,6 @@ }, /turf/simulated/floor/plating, /area/shuttle/canary) -"ndN" = ( -/obj/effect/floor_decal/corner/black{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/hangar/canary) "ndR" = ( /obj/structure/railing/mapped, /obj/structure/railing/mapped{ @@ -90423,6 +90990,20 @@ /obj/effect/floor_decal/sign/a, /turf/unsimulated/floor, /area/centcom/holding) +"nls" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/engineering) "nlt" = ( /obj/machinery/light/small{ dir = 1 @@ -90605,6 +91186,24 @@ /obj/machinery/photocopier, /turf/simulated/floor/tiled/dark, /area/hangar/control) +"nmI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline_door/red{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline_straight/red{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/shuttle/quark/cargo_hold) "nmP" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 1 @@ -90714,6 +91313,15 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_two/fore/starboard) +"nnD" = ( +/obj/structure/bed/stool/chair/shuttle{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/full{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/quark/cockpit) "nnI" = ( /turf/simulated/floor/carpet/rubber, /area/horizon/crew_quarters/fitness/gym) @@ -91013,6 +91621,30 @@ icon_state = "desert" }, /area/centcom/shared_dream) +"nqj" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline_straight/red{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline_straight/red{ + dir = 8 + }, +/obj/structure/bed/handrail{ + dir = 4; + pixel_x = -2 + }, +/obj/effect/map_effect/marker_helper/airlock/out, +/obj/effect/map_effect/marker/airlock/shuttle{ + master_tag = "airlock_shuttle_quark"; + name = "airlock_shuttle_quark"; + req_one_access = list(65,47,74); + shuttle_tag = "Quark"; + cycle_to_external_air = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/quark/cargo_hold) "nqp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -91131,23 +91763,6 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/maintenance/wing/starboard) -"nqZ" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/black{ - dir = 10 - }, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark, -/area/hangar/auxiliary) "nrc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -93260,17 +93875,6 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop/xo) -"nGZ" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/black{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/hangar/auxiliary) "nHc" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/maintenance{ @@ -93322,6 +93926,13 @@ "nHE" = ( /turf/simulated/wall/shuttle/space_ship/mercenary, /area/shuttle/skipjack) +"nHL" = ( +/obj/structure/railing/mapped, +/obj/effect/floor_decal/corner/black{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/hangar/auxiliary) "nHU" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -94029,21 +94640,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/longbow) -"nNh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/black{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/hangar/auxiliary) "nNi" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -94063,15 +94659,6 @@ }, /turf/template_noop, /area/template_noop) -"nNx" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hangar/auxiliary) "nNC" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -94769,6 +95356,13 @@ }, /turf/simulated/floor/tiled/dark, /area/engineering/gravity_gen) +"nSv" = ( +/obj/machinery/atmospherics/unary/engine/scc_shuttle, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/shuttle/quark/cargo_hold) "nSw" = ( /obj/structure/bed/stool/chair/shuttle{ dir = 4 @@ -94804,6 +95398,9 @@ /obj/item/gun/energy/laser, /turf/simulated/floor, /area/tdome/tdome2) +"nSJ" = ( +/turf/simulated/wall/shuttle/scc, +/area/shuttle/quark/cockpit) "nSR" = ( /obj/structure/lattice/catwalk, /obj/structure/disposalpipe/segment{ @@ -95480,21 +96077,6 @@ /obj/effect/floor_decal/corner/dark_blue/diagonal, /turf/simulated/floor/tiled/dark, /area/bridge/aibunker) -"nYw" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/light/spot{ - dir = 4; - must_start_working = 1 - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/hangar/canary) "nYx" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -96488,6 +97070,16 @@ /obj/item/clothing/under/rank/sol, /turf/unsimulated/floor, /area/antag/mercenary) +"ofu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_green/diagonal, +/turf/simulated/floor/tiled, +/area/hangar/auxiliary) "ofA" = ( /obj/effect/floor_decal/industrial/outline/grey, /obj/structure/closet/crate/tool, @@ -97381,6 +97973,19 @@ }, /turf/simulated/floor/plating, /area/maintenance/wing/starboard/deck1) +"omO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/light/spot{ + dir = 4 + }, +/obj/machinery/firealarm/east, +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/hangar/auxiliary) "omP" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -97666,6 +98271,13 @@ }, /turf/simulated/wall, /area/horizon/commissary) +"ooT" = ( +/obj/structure/bed/stool/chair/office/dark{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/turf/simulated/floor/tiled/dark, +/area/hangar/control) "ooX" = ( /obj/effect/floor_decal/corner/dark_blue/diagonal, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -97981,6 +98593,26 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor, /area/maintenance/security_port) +"osx" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/airlock_sensor{ + dir = 1; + pixel_y = -20; + pixel_x = 6 + }, +/obj/effect/map_effect/marker_helper/airlock/exterior, +/obj/structure/bed/handrail{ + pixel_y = 2 + }, +/obj/effect/map_effect/marker/airlock{ + master_tag = "airlock_shuttle_quark_aux"; + name = "airlock_shuttle_quark_aux"; + req_one_access = list(65,47,74) + }, +/turf/simulated/floor/reinforced, +/area/shuttle/quark/cargo_hold) "osz" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood, @@ -97994,6 +98626,17 @@ }, /turf/simulated/floor/carpet, /area/bridge/meeting_room) +"osQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hangar/auxiliary) "osR" = ( /obj/structure/lattice/catwalk, /obj/structure/railing/mapped, @@ -98169,6 +98812,24 @@ }, /turf/simulated/floor/reinforced, /area/rnd/xenobiology) +"oub" = ( +/obj/item/reagent_containers/glass/bucket{ + pixel_x = -11; + pixel_y = -5 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/alarm/south, +/obj/machinery/camera/network/research{ + c_tag = "Research - Spectrometry"; + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/carpet/rubber, +/area/rnd/xenoarch_atrium) "oud" = ( /obj/machinery/door/airlock/external, /obj/machinery/access_button{ @@ -98374,6 +99035,20 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) +"ovh" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/rnd/xenoarch_atrium) "ovr" = ( /obj/effect/floor_decal/corner/beige/diagonal, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -98399,6 +99074,17 @@ }, /turf/unsimulated/floor, /area/centcom/legion) +"ovD" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/survey_probe/ground, +/turf/simulated/floor/plating, +/area/hangar/auxiliary) +"ovE" = ( +/obj/effect/landmark/entry_point/starboard{ + name = "starboard, rear" + }, +/turf/simulated/wall/shuttle/scc, +/area/shuttle/quark/cargo_hold) "ovP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -98518,21 +99204,6 @@ }, /turf/unsimulated/floor, /area/centcom/control) -"ows" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/black{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/hangar/auxiliary) "owB" = ( /obj/structure/grille, /obj/machinery/door/firedoor, @@ -98752,6 +99423,11 @@ /obj/effect/decal/fake_object/light_source/invisible, /turf/simulated/floor/carpet/rubber, /area/antag/jockey) +"oyr" = ( +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/hangar/auxiliary) "oys" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 6 @@ -99189,6 +99865,16 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/full, /area/security/checkpoint) +"oBM" = ( +/obj/effect/map_effect/window_spawner/full/shuttle/scc{ + spawn_firedoor = 1; + spawn_grille = 1 + }, +/obj/effect/landmark/entry_point/port{ + name = "port, cockpit" + }, +/turf/simulated/floor/plating, +/area/shuttle/quark/cockpit) "oBO" = ( /obj/machinery/atmospherics/pipe/simple/visible/universal{ dir = 8 @@ -99236,6 +99922,14 @@ }, /turf/simulated/floor/wood/maple, /area/horizon/holodeck/source_cafe) +"oCk" = ( +/obj/machinery/camera/network/first_deck{ + c_tag = "First Deck - Hangar 15" + }, +/obj/machinery/floodlight, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/plating, +/area/hangar/auxiliary) "oCl" = ( /obj/machinery/atmospherics/binary/pump{ dir = 4; @@ -99261,22 +99955,6 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/security/investigations_hallway) -"oCq" = ( -/obj/structure/closet/walllocker/medical{ - pixel_x = 32 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/outline/medical, -/obj/item/stack/medical/bruise_pack, -/obj/item/stack/medical/bruise_pack, -/obj/item/stack/medical/ointment, -/obj/item/stack/medical/ointment, -/obj/item/reagent_containers/hypospray/autoinjector/inaprovaline, -/obj/item/reagent_containers/hypospray/autoinjector/inaprovaline, -/turf/simulated/floor/tiled, -/area/hangar/auxiliary) "oCu" = ( /obj/effect/floor_decal/industrial/warning, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -99342,20 +100020,6 @@ /obj/item/device/spaceflare, /turf/simulated/floor/tiled/dark, /area/hangar/control) -"oCX" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/engineering) "oCY" = ( /turf/simulated/floor/plating, /area/maintenance/wing/starboard) @@ -99460,6 +100124,9 @@ icon_state = "6,16" }, /area/shuttle/intrepid/quarters) +"oDL" = ( +/turf/simulated/wall/shuttle/scc, +/area/shuttle/quark/cargo_hold) "oDM" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -99529,15 +100196,6 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/maintenance/aft) -"oEp" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/hangar/canary) "oEq" = ( /turf/simulated/wall/shuttle/unique/ccia{ icon_state = "10,2" @@ -99686,21 +100344,6 @@ }, /turf/simulated/floor/reinforced, /area/rnd/test_range) -"oFJ" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/obj/machinery/light/spot{ - dir = 8; - must_start_working = 1 - }, -/turf/simulated/floor/tiled, -/area/hangar/canary) "oFL" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 5 @@ -101292,12 +101935,6 @@ }, /turf/simulated/floor/plating, /area/shuttle/mining) -"oSD" = ( -/obj/effect/shuttle_landmark/burglar_ship/hangar{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hangar/auxiliary) "oSE" = ( /obj/structure/bed/stool/chair/sofa/corner/convex/red{ dir = 4 @@ -102142,6 +102779,12 @@ /obj/effect/map_effect/window_spawner/full/reinforced/firedoor, /turf/simulated/floor/tiled/dark/full, /area/security/checkpoint2) +"oZT" = ( +/obj/machinery/computer/shuttle_control/explore/terminal/quark{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/quark/cockpit) "oZZ" = ( /obj/structure/lattice, /obj/structure/ladder{ @@ -102644,6 +103287,15 @@ /obj/machinery/alarm/east, /turf/simulated/floor/wood, /area/crew_quarters/lounge/secondary) +"pdW" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/effect/floor_decal/corner/black{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/hangar/auxiliary) "pdY" = ( /obj/effect/floor_decal/corner_wide/purple{ dir = 9 @@ -103559,6 +104211,13 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/reinforced, /area/shuttle/mercenary) +"pjM" = ( +/obj/item/device/radio/intercom/expedition/north, +/obj/machinery/computer/ship/engines/terminal{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/quark/cockpit) "pjP" = ( /obj/machinery/atmospherics/pipe/manifold/visible, /obj/effect/floor_decal/corner/lime{ @@ -103616,16 +104275,6 @@ "pkt" = ( /turf/simulated/floor/holofloor/grass, /area/horizon/holodeck/source_wildlife) -"pkE" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/light/spot{ - dir = 4; - must_start_working = 1 - }, -/turf/simulated/floor/tiled, -/area/hangar/canary) "pkF" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 10 @@ -104263,11 +104912,6 @@ /obj/structure/railing/mapped, /turf/simulated/floor/lino/diamond, /area/shuttle/intrepid/quarters) -"ppj" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/powered/scrubber, -/turf/simulated/floor/tiled/full, -/area/hangar/auxiliary) "ppl" = ( /obj/effect/step_trigger/thrower/shuttle/southeast, /turf/template_noop, @@ -104436,15 +105080,6 @@ /obj/structure/railing/mapped, /turf/simulated/floor/wood, /area/horizon/cafeteria) -"pqO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/rnd/xenoarch_atrium) "prb" = ( /obj/machinery/light/small{ dir = 8 @@ -105116,6 +105751,28 @@ /obj/structure/lattice/catwalk/indoor, /turf/simulated/floor/plating, /area/hangar/intrepid) +"pvv" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/corner/purple/full{ + dir = 4 + }, +/obj/item/device/binoculars/high_power{ + pixel_x = -2; + pixel_y = 8 + }, +/obj/item/device/gps/science{ + pixel_y = 4; + pixel_x = 2; + gpstag = "QRK01" + }, +/obj/item/device/gps/science{ + pixel_y = 1; + pixel_x = 7; + gpstag = "QRK02" + }, +/obj/item/device/radio/intercom/expedition/east, +/turf/simulated/floor/tiled/dark, +/area/shuttle/quark/cockpit) "pvA" = ( /obj/structure/bed/stool/chair/padded/brown{ dir = 4 @@ -106283,6 +106940,30 @@ }, /turf/simulated/floor/tiled, /area/horizon/hallway/deck_three/primary/starboard) +"pDE" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/bed/handrail{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4 + }, +/obj/effect/map_effect/marker_helper/airlock/out, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/structure/lattice/catwalk/indoor, +/obj/effect/map_effect/marker/airlock/shuttle{ + master_tag = "airlock_shuttle_spark"; + name = "airlock_shuttle_spark"; + req_one_access = list(31,48,67); + shuttle_tag = "Spark"; + cycle_to_external_air = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/mining) "pDH" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -106454,12 +107135,6 @@ /obj/effect/floor_decal/industrial/outline/emergency_closet, /turf/simulated/floor/tiled, /area/hangar/intrepid) -"pEk" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/hangar/canary) "pEl" = ( /obj/effect/floor_decal/corner/white{ dir = 5 @@ -107156,19 +107831,6 @@ }, /turf/simulated/floor/tiled/dark, /area/engineering/engine_waste) -"pKe" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/obj/item/device/radio/intercom/expedition/hailing/east, -/obj/machinery/camera/network/intrepid{ - c_tag = "Intrepid - Crew Area"; - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/quarters) "pKg" = ( /obj/effect/decal/fake_object{ icon = 'icons/obj/doors/rapid_pdoor.dmi'; @@ -107531,10 +108193,6 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, /area/rnd/xenoarch_storage) -"pMP" = ( -/obj/effect/shuttle_landmark/distress/blue, -/turf/simulated/floor/plating, -/area/hangar/auxiliary) "pMR" = ( /obj/structure/lattice, /obj/structure/platform/ledge, @@ -107886,12 +108544,6 @@ /obj/item/net_container, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology) -"pPH" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/hangar/canary) "pPJ" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/effect/floor_decal/industrial/warning, @@ -107957,9 +108609,6 @@ temperature = 278.15 }, /area/medical/morgue/lower) -"pPV" = ( -/turf/simulated/wall/r_wall, -/area/hangar/canary) "pPW" = ( /obj/machinery/light/small/emergency{ dir = 8 @@ -109147,10 +109796,6 @@ }, /turf/simulated/open, /area/hallway/medical/upper) -"pYW" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/full, -/area/hangar/auxiliary) "pZd" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 @@ -109433,6 +110078,13 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, /area/rnd/xenoarch_atrium) +"qbw" = ( +/obj/structure/closet/walllocker/firecloset{ + pixel_x = 32 + }, +/obj/effect/floor_decal/industrial/outline/firefighting_closet, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenoarch_atrium) "qbx" = ( /obj/machinery/vending/coffee, /turf/unsimulated/floor{ @@ -110250,6 +110902,17 @@ }, /turf/simulated/floor/exoplanet/grass/grove, /area/centcom/shared_dream) +"qgM" = ( +/obj/effect/floor_decal/industrial/outline/research, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/dark, +/area/shuttle/quark/cargo_hold) "qgO" = ( /obj/effect/floor_decal/corner/blue/full{ dir = 4 @@ -111169,14 +111832,6 @@ /obj/machinery/light, /turf/simulated/floor/tiled, /area/bridge/upperdeck) -"qog" = ( -/obj/effect/landmark/entry_point/fore{ - name = "fore, secondary hangar starboard" - }, -/turf/unsimulated/wall/fakepdoor{ - dir = 4 - }, -/area/hangar/canary) "qom" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -111723,27 +112378,6 @@ }, /turf/simulated/floor/exoplanet/barren, /area/centcom/shared_dream) -"qsx" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/effect/floor_decal/corner/black{ - dir = 6 - }, -/obj/machinery/camera/network/first_deck{ - c_tag = "First Deck - Hangar 11"; - dir = 1 - }, -/obj/machinery/portable_atmospherics/powered/pump/filled, -/obj/effect/floor_decal/corner/dark_green{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/dark, -/area/hangar/canary) "qsC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -112652,6 +113286,22 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/shuttle/skipjack) +"qAd" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{ + dir = 8; + frequency = 1380; + id_tag = "escape_pod_1_berth"; + pixel_x = 25; + tag_door = "escape_pod_1_berth_hatch" + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/hangar/auxiliary) "qAf" = ( /obj/effect/floor_decal/corner/white/diagonal, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -113257,6 +113907,15 @@ }, /turf/simulated/floor/tiled/dark, /area/engineering/storage/tech) +"qEj" = ( +/obj/machinery/light/spot, +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/outline/emergency_closet, +/turf/simulated/floor/tiled, +/area/hangar/auxiliary) "qEk" = ( /obj/machinery/camera/network/medbay{ c_tag = "Medical - Morgue"; @@ -113463,6 +114122,15 @@ /obj/effect/floor_decal/industrial/hatch/grey, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/armoury) +"qFR" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/hangar/auxiliary) "qFX" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/tiled, @@ -114225,15 +114893,6 @@ }, /turf/simulated/floor/reinforced/nitrogen, /area/engineering/atmos/air) -"qKo" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/xenoarch_atrium) "qKv" = ( /turf/simulated/wall/shuttle/dark/corner/underlay{ dir = 5 @@ -114543,6 +115202,16 @@ }, /turf/simulated/floor/plating, /area/turbolift/primary/deck_1) +"qNn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/map_effect/window_spawner/full/shuttle/scc{ + spawn_firedoor = 1; + spawn_grille = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/quark/cockpit) "qNq" = ( /obj/machinery/door/airlock/external{ dir = 4; @@ -114725,6 +115394,19 @@ }, /turf/simulated/floor/tiled/dark/full, /area/engineering/engine_room) +"qOu" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/effect/floor_decal/corner/black{ + dir = 6 + }, +/obj/machinery/camera/network/first_deck{ + c_tag = "First Deck - Hangar 11"; + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/hangar/auxiliary) "qOx" = ( /obj/effect/floor_decal/industrial/loading/yellow{ dir = 1 @@ -114801,6 +115483,20 @@ /obj/effect/floor_decal/industrial/loading/yellow, /turf/unsimulated/floor, /area/centcom/spawning) +"qOX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_command{ + dir = 1; + name = "Pilot Room"; + req_one_access = list(73,48,65) + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/full, +/area/hangar/control) "qPc" = ( /obj/machinery/recharger/wallcharger{ pixel_x = 4; @@ -115091,16 +115787,6 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"qQS" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hangar/auxiliary) "qQU" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/industrial/warning{ @@ -115154,6 +115840,13 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/full, /area/bridge) +"qRp" = ( +/obj/effect/map_effect/window_spawner/full/shuttle/scc{ + spawn_firedoor = 1; + spawn_grille = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/quark/cockpit) "qRq" = ( /obj/structure/table/standard, /obj/item/storage/belt/utility/full, @@ -115771,6 +116464,14 @@ }, /turf/simulated/floor/tiled, /area/bridge/cciaroom/lounge) +"qVY" = ( +/obj/effect/landmark/entry_point/fore{ + name = "fore, secondary hangar starboard" + }, +/turf/unsimulated/wall/fakepdoor{ + dir = 4 + }, +/area/hangar/auxiliary) "qVZ" = ( /obj/structure/window/reinforced/crescent{ dir = 8 @@ -116245,6 +116946,17 @@ /obj/structure/closet/secure_closet/freezer/meat, /turf/unsimulated/floor, /area/centcom/bar) +"qZs" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/structure/fuel_port/phoron/scc{ + pixel_x = 5; + pixel_y = 23 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/quark/cargo_hold) "qZu" = ( /obj/structure/railing/mapped{ dir = 1 @@ -116438,6 +117150,15 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/maintenance/wing/port/far) +"raU" = ( +/obj/structure/reagent_dispensers/extinguisher, +/obj/machinery/light/spot{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/firefighting_closet, +/obj/structure/extinguisher_cabinet/east, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenoarch_atrium) "raY" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 6 @@ -116779,6 +117500,17 @@ /obj/effect/map_effect/window_spawner/full/reinforced/firedoor, /turf/simulated/floor/tiled/dark/full, /area/horizon/hallway/deck_three/primary/central) +"rcT" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hangar/auxiliary) "rcV" = ( /obj/structure/bed/stool/chair/office/dark{ dir = 4 @@ -117494,6 +118226,25 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/wing/starboard/far) +"rid" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline_straight/red{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/item/device/radio/intercom/expedition/north, +/obj/structure/bed/handrail{ + pixel_y = 2 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/quark/cargo_hold) "rik" = ( /turf/simulated/floor/wood/maple, /area/horizon/holodeck/source_cafe) @@ -117940,6 +118691,15 @@ }, /turf/simulated/floor/wood, /area/horizon/hallway/deck_three/primary/central) +"rml" = ( +/obj/structure/bed/stool/chair/shuttle, +/obj/effect/floor_decal/corner/purple/full, +/obj/machinery/camera/network/quark{ + dir = 4; + c_tag = "Quark - Cockpit" + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/quark/cockpit) "rmu" = ( /obj/structure/table/rack, /obj/random/loot, @@ -118240,6 +119000,21 @@ /obj/effect/floor_decal/spline/plain/cee, /turf/simulated/floor/carpet/rubber, /area/hallway/primary/central_one) +"roF" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/obj/machinery/light/spot{ + dir = 8; + must_start_working = 1 + }, +/turf/simulated/floor/tiled, +/area/hangar/auxiliary) "roG" = ( /obj/structure/railing/mapped, /turf/simulated/floor/plating, @@ -118563,16 +119338,6 @@ icon_state = "wood" }, /area/centcom/specops) -"rrR" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/firealarm/north, -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hangar/auxiliary) "rrS" = ( /obj/structure/shuttle_part/scc/research{ icon_state = "6,5"; @@ -118636,6 +119401,33 @@ "rse" = ( /turf/simulated/floor, /area/horizon/maintenance/deck_three/aft/starboard) +"rsh" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline_door/red{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline_straight/red{ + dir = 4 + }, +/obj/effect/map_effect/marker_helper/airlock/out, +/obj/structure/bed/handrail{ + dir = 8; + pixel_x = 2 + }, +/obj/effect/map_effect/marker/airlock/shuttle{ + master_tag = "airlock_shuttle_quark"; + name = "airlock_shuttle_quark"; + req_one_access = list(65,47,74); + shuttle_tag = "Quark"; + cycle_to_external_air = 1 + }, +/obj/machinery/light/small/red{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/quark/cargo_hold) "rsj" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 6 @@ -119270,15 +120062,6 @@ }, /turf/simulated/floor/carpet/rubber, /area/engineering/engine_monitoring/rust) -"rwn" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 6 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hallway/engineering) "rwv" = ( /obj/effect/floor_decal/corner_wide/lime{ dir = 6 @@ -120586,6 +121369,14 @@ }, /turf/simulated/floor/lino, /area/chapel/main) +"rHG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/firealarm/east, +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/hangar/auxiliary) "rHK" = ( /turf/simulated/floor/plating, /area/turbolift/primary/deck_1) @@ -121026,6 +121817,22 @@ /obj/item/hullbeacon/red, /turf/simulated/floor/airless, /area/hangar/operations) +"rKN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/hatch_door/red, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenoarch_atrium) "rKU" = ( /obj/structure/bed/stool/chair{ name = "uncomfortable chair" @@ -121260,6 +122067,18 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/captain) +"rNq" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/effect/floor_decal/corner/black{ + dir = 9 + }, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/effect/floor_decal/corner/dark_green, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/hangar/auxiliary) "rNt" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -122295,6 +123114,18 @@ }, /turf/unsimulated/floor, /area/antag/mercenary) +"rVP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/hangar/auxiliary) "rWa" = ( /obj/effect/floor_decal/industrial/hatch/red, /turf/simulated/floor/reinforced/airless, @@ -122387,6 +123218,20 @@ /obj/machinery/alarm/east, /turf/simulated/floor/tiled, /area/medical/emergency_storage) +"rWO" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/item/hullbeacon/green{ + pixel_y = 6; + pixel_x = 8 + }, +/obj/structure/bed/handrail{ + dir = 8; + pixel_x = 2 + }, +/turf/simulated/floor/reinforced, +/area/shuttle/quark/cockpit) "rWV" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 6 @@ -122606,30 +123451,6 @@ icon_state = "6,2" }, /area/shuttle/mining) -"rZi" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/bed/handrail{ - dir = 8 - }, -/obj/effect/map_effect/marker/airlock/shuttle{ - master_tag = "airlock_shuttle_spark"; - name = "airlock_shuttle_spark"; - req_one_access = list(31,48,67); - shuttle_tag = "Spark"; - cycle_to_external_air = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4 - }, -/obj/effect/map_effect/marker_helper/airlock/out, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 - }, -/obj/structure/lattice/catwalk/indoor, -/turf/simulated/floor/plating, -/area/shuttle/mining) "rZl" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 5 @@ -123131,6 +123952,37 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck/source_biesel) +"scJ" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline_door/red{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline_door/red{ + dir = 4 + }, +/obj/structure/bed/handrail, +/obj/effect/floor_decal/industrial/outline_straight/red{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline_straight/red, +/obj/machinery/airlock_sensor{ + pixel_y = 28; + pixel_x = 6 + }, +/obj/effect/map_effect/marker/airlock{ + master_tag = "airlock_shuttle_quark_aux"; + name = "airlock_shuttle_quark_aux"; + req_one_access = list(65,47,74) + }, +/obj/machinery/light/small/red, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + pixel_y = 28; + pixel_x = -6 + }, +/turf/simulated/floor/plating, +/area/shuttle/quark/cockpit) "scU" = ( /obj/effect/floor_decal/industrial/warning, /obj/random/junk, @@ -123240,6 +124092,19 @@ }, /turf/unsimulated/floor, /area/centcom/spawning) +"sdo" = ( +/obj/machinery/power/smes/buildable/horizon_shuttle{ + RCon_tag = "Quark" + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/structure/cable/green, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/quark/cargo_hold) "sdq" = ( /obj/effect/floor_decal/industrial/warning{ dir = 9 @@ -124670,6 +125535,17 @@ icon_state = "dark_preview" }, /area/centcom/specops) +"spr" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/closet/firecloset, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/firefighting_closet, +/turf/simulated/floor/tiled/dark/full, +/area/rnd/xenoarch_atrium) "sps" = ( /obj/machinery/power/apc/low/east, /obj/structure/cable/green{ @@ -124881,28 +125757,6 @@ }, /turf/simulated/floor, /area/maintenance/engineering_ladder) -"sre" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/hallway/engineering) "sri" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -124994,19 +125848,6 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"srN" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/rnd/xenoarch_atrium) "srO" = ( /obj/structure/cable{ icon_state = "4-8" @@ -125030,6 +125871,12 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/wood, /area/horizon/crew_quarters/lounge/bar) +"ssh" = ( +/obj/machinery/computer/ship/sensors/terminal{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/quark/cockpit) "ssn" = ( /obj/structure/closet/secure_closet/security{ name = "officer's locker"; @@ -125153,20 +126000,6 @@ }, /turf/simulated/floor/carpet/rubber, /area/tcommsat/chamber) -"stn" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 1; - name = "Maintenance Passthrough"; - req_one_access = list(12,47) - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/full, -/area/rnd/xenoarch_atrium) "sto" = ( /turf/unsimulated/floor{ icon_state = "ramptop" @@ -125772,12 +126605,6 @@ }, /turf/simulated/floor/carpet/rubber, /area/assembly/chargebay) -"sxy" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/hangar/canary) "sxB" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 8 @@ -125926,12 +126753,6 @@ }, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_battlemonsters) -"syS" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/hangar/canary) "syW" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -126395,6 +127216,19 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenoarch_atrium) +"sCE" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/closet/crate{ + name = "tents crate" + }, +/obj/item/tent, +/obj/item/tent, +/obj/item/tent/big/scc, +/obj/item/tent, +/obj/item/tent, +/obj/structure/railing/mapped, +/turf/simulated/floor/plating, +/area/hangar/auxiliary) "sCH" = ( /obj/effect/floor_decal/corner/grey/diagonal{ dir = 4 @@ -126772,15 +127606,6 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/operations/office) -"sFn" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/carpet/rubber, -/area/rnd/xenoarch_atrium) "sFo" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 10 @@ -127271,12 +128096,6 @@ }, /turf/simulated/floor/tiled/dark, /area/engineering/storage/tech) -"sJN" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hangar/canary) "sJQ" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 8 @@ -127343,21 +128162,6 @@ icon_state = "white" }, /area/centcom/legion) -"sKc" = ( -/obj/machinery/light/spot, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/outline/emergency_closet, -/turf/simulated/floor/tiled, -/area/hangar/canary) "sKd" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/corner/mauve{ @@ -128383,6 +129187,18 @@ /obj/machinery/light, /turf/simulated/floor/wood, /area/lawoffice/representative_two) +"sRr" = ( +/obj/machinery/door/firedoor/multi_tile{ + dir = 2 + }, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2; + name = "Xenoarchaeology and Anomalous Materials"; + req_access = list(47) + }, +/obj/effect/floor_decal/industrial/hatch_door/red, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenoarch_atrium) "sRs" = ( /obj/structure/stairs/south, /obj/structure/stairs_railing{ @@ -129227,6 +130043,18 @@ /obj/effect/floor_decal/industrial/outline/grey, /turf/simulated/floor/tiled/dark/full, /area/horizon/kitchen) +"sXX" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/effect/floor_decal/corner/black{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/hangar/auxiliary) "sYh" = ( /obj/machinery/door/airlock{ dir = 1; @@ -129563,18 +130391,6 @@ /obj/machinery/chemical_dispenser/coffeemaster/full, /turf/unsimulated/floor, /area/centcom/bar) -"tbP" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hangar/canary) "tbR" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 9 @@ -130247,6 +131063,23 @@ }, /turf/simulated/floor/tiled/dark, /area/turret_protected/ai_upload_foyer) +"thg" = ( +/obj/structure/bed/stool/chair/shuttle, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/effect/floor_decal/corner/purple/full{ + dir = 1 + }, +/obj/item/device/radio/intercom/expedition/north, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/shuttle/quark/cockpit) "thm" = ( /obj/item/tape/engineering{ icon_state = "engineering_door" @@ -130477,6 +131310,14 @@ }, /turf/simulated/floor/tiled/full, /area/rnd/eva) +"tiR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/dark_green/diagonal, +/turf/simulated/floor/tiled, +/area/hangar/auxiliary) "tiV" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/light/small{ @@ -130488,17 +131329,19 @@ /obj/structure/noticeboard, /turf/simulated/wall/r_wall, /area/lawoffice/consular_two) -"tjl" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/closet/firecloset, -/obj/effect/floor_decal/industrial/outline/firefighting_closet, -/obj/effect/floor_decal/industrial/warning{ +"tja" = ( +/obj/machinery/atmospherics/binary/pump/fuel{ dir = 4 }, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/xenoarch_atrium) +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/firealarm/south, +/turf/simulated/floor/plating, +/area/shuttle/quark/cargo_hold) "tjm" = ( /obj/effect/floor_decal/corner/beige/full{ dir = 8 @@ -130546,10 +131389,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/hallway/deck_three/primary/port) -"tjN" = ( -/obj/effect/shuttle_landmark/horizon/hangar1, -/turf/simulated/floor/plating, -/area/hangar/auxiliary) "tjP" = ( /obj/structure/table/wood, /obj/item/flame/candle, @@ -131471,6 +132310,15 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/custodial/disposals) +"trd" = ( +/obj/structure/railing/mapped, +/obj/effect/floor_decal/corner/black{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/survey_probe/ground, +/turf/simulated/floor/plating, +/area/hangar/auxiliary) "tre" = ( /obj/machinery/atmospherics/pipe/zpipe/down/black{ dir = 1 @@ -131567,14 +132415,6 @@ /obj/machinery/light, /turf/unsimulated/floor/plating, /area/centcom/evac) -"trW" = ( -/obj/machinery/light/spot{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/floodlight, -/turf/simulated/floor/tiled/full, -/area/hangar/auxiliary) "trX" = ( /obj/machinery/telecomms/hub/preset_cent, /turf/unsimulated/floor{ @@ -131751,11 +132591,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/horizon/hallway/deck_three/primary/central) -"ttc" = ( -/obj/structure/bed/stool/chair/office/dark, -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/turf/simulated/floor/tiled/dark, -/area/hangar/control) "ttd" = ( /obj/structure/table/rack, /obj/item/reagent_containers/hypospray{ @@ -131879,6 +132714,15 @@ icon_state = "desert" }, /area/centcom/shared_dream) +"ttC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hangar/auxiliary) "ttK" = ( /obj/structure/cable{ icon_state = "4-8" @@ -132136,6 +132980,17 @@ }, /turf/simulated/floor/carpet/art, /area/crew_quarters/lounge/secondary) +"tva" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/rnd/xenoarch_atrium) "tvh" = ( /obj/structure/closet/emcloset, /obj/effect/floor_decal/corner/dark_green/diagonal, @@ -132172,6 +133027,15 @@ }, /turf/simulated/floor/tiled/dark/full, /area/engineering/engine_room/rust) +"tvy" = ( +/obj/effect/floor_decal/corner/purple{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/shuttle/quark/cargo_hold) "tvz" = ( /obj/random/pottedplant{ pixel_y = 8 @@ -132754,6 +133618,13 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/maintenance/wing/starboard) +"tzM" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/plating, +/area/hangar/auxiliary) "tzO" = ( /obj/effect/decal/fake_object{ color = "#545c68"; @@ -132873,10 +133744,6 @@ /obj/machinery/light, /turf/simulated/floor/wood, /area/bridge/cciaroom) -"tAU" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/airless, -/area/hangar/canary) "tBb" = ( /obj/effect/floor_decal/corner/blue{ dir = 5 @@ -133202,6 +134069,22 @@ /obj/effect/floor_decal/corner/dark_blue, /turf/simulated/floor/tiled, /area/horizon/security/hallway) +"tDz" = ( +/obj/structure/bed/stool/chair/shuttle, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/shuttle/quark/cockpit) "tDI" = ( /obj/structure/closet/crate/rad, /obj/item/stack/material/tritium/full, @@ -133459,14 +134342,6 @@ color = "#792f27" }, /area/centcom/ferry) -"tFL" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/alarm/north, -/turf/simulated/floor/tiled/full, -/area/hangar/auxiliary) "tFM" = ( /obj/structure/ladder/up{ pixel_y = 13 @@ -133613,6 +134488,27 @@ }, /turf/simulated/floor, /area/maintenance/security_port) +"tGR" = ( +/obj/structure/table/standard, +/obj/machinery/vending/wallmed1{ + req_access = null; + pixel_y = 32 + }, +/obj/machinery/alarm/east, +/obj/item/paper_bin{ + pixel_y = 3; + pixel_x = 4 + }, +/obj/item/pen{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/machinery/power/apc/quark/south, +/turf/simulated/floor/tiled/dark, +/area/shuttle/quark/cockpit) "tGT" = ( /obj/machinery/door/firedoor, /obj/structure/lattice/catwalk/indoor/grate, @@ -134762,6 +135658,17 @@ /obj/item/storage/box/gloves, /turf/simulated/floor/tiled/dark, /area/rnd/xenoarch_storage) +"tPC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/firealarm/west, +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hangar/auxiliary) "tPG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -134984,19 +135891,6 @@ /obj/structure/table/wood, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck/source_biesel) -"tRH" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped, -/turf/simulated/floor/tiled, -/area/hangar/auxiliary) "tRO" = ( /obj/machinery/vending/snack{ name = "hacked Getmore Chocolate Corp"; @@ -136324,6 +137218,16 @@ }, /turf/simulated/floor/tiled, /area/operations/storage) +"ubi" = ( +/obj/effect/map_effect/window_spawner/full/shuttle/scc{ + spawn_firedoor = 1; + spawn_grille = 1 + }, +/obj/effect/landmark/entry_point/starboard{ + name = "starboard, cockpit" + }, +/turf/simulated/floor/plating, +/area/shuttle/quark/cockpit) "ubn" = ( /obj/effect/floor_decal/corner/lime/diagonal{ dir = 8 @@ -136341,6 +137245,13 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/maintenance/engineering) +"ubr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/hangar/auxiliary) "ubt" = ( /obj/structure/grille, /obj/machinery/door/firedoor, @@ -136985,22 +137896,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"ufR" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/effect/floor_decal/corner/black{ - dir = 9 - }, -/obj/machinery/portable_atmospherics/powered/pump/filled, -/obj/effect/floor_decal/corner/dark_green, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/camera/network/first_deck{ - c_tag = "First Deck - Hangar 12"; - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/hangar/auxiliary) "ufX" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 8 @@ -137427,6 +138322,23 @@ /obj/structure/window/shuttle/scc_space_ship/cardinal, /turf/simulated/floor/plating, /area/shuttle/merchant) +"ujw" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/table/steel, +/obj/item/stack/rods/full{ + pixel_y = 2; + pixel_x = -1 + }, +/obj/item/device/gps/science{ + pixel_x = 5; + pixel_y = 1 + }, +/obj/item/device/gps/science{ + pixel_x = -7; + pixel_y = -5 + }, +/turf/simulated/floor/plating, +/area/hangar/auxiliary) "ujx" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -138339,16 +139251,6 @@ }, /turf/simulated/floor/tiled/white, /area/medical/main_storage) -"upi" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/camera/network/research{ - c_tag = "Research - Xenoarchaeology Entrance"; - dir = 1 - }, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/xenoarch_atrium) "upm" = ( /obj/machinery/atmospherics/unary/freezer{ dir = 1; @@ -138673,16 +139575,6 @@ }, /turf/simulated/floor/tiled, /area/maintenance/wing/port/far) -"urO" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/obj/machinery/light/spot{ - dir = 8; - must_start_working = 1 - }, -/turf/simulated/floor/tiled, -/area/hangar/canary) "urQ" = ( /obj/structure/railing/mapped{ dir = 8 @@ -140011,6 +140903,21 @@ }, /turf/simulated/floor/tiled, /area/bridge) +"uBB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/hatch_door/red{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_research, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/quark/cockpit) "uBD" = ( /obj/vehicle/droppod/syndie{ connected_blastdoor = "loner_droppod_1" @@ -140702,6 +141609,15 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/storage/primary) +"uHt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 10 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/shuttle/quark/cargo_hold) "uHw" = ( /obj/machinery/light/small, /obj/structure/table/steel, @@ -141813,6 +142729,10 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/crew_quarters/heads/chief) +"uQu" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/hangar/auxiliary) "uQH" = ( /obj/effect/floor_decal/corner/mauve{ dir = 6 @@ -141864,16 +142784,6 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/dark, /area/shuttle/skipjack) -"uQU" = ( -/obj/structure/closet/walllocker/firecloset{ - pixel_x = 32 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/outline/firefighting_closet, -/turf/simulated/floor/tiled, -/area/hangar/auxiliary) "uRe" = ( /turf/simulated/wall/shuttle/unique/scc/research{ icon_state = "6,23" @@ -141919,6 +142829,15 @@ }, /turf/simulated/floor/plating, /area/hangar/intrepid) +"uRx" = ( +/obj/effect/floor_decal/corner/black{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/hangar/auxiliary) "uRB" = ( /obj/machinery/door/airlock/maintenance{ dir = 4; @@ -141966,6 +142885,16 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/conference) +"uRN" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/obj/machinery/light/spot{ + dir = 8; + must_start_working = 1 + }, +/turf/simulated/floor/tiled, +/area/hangar/auxiliary) "uRO" = ( /obj/machinery/door/firedoor, /obj/structure/grille/diagonal{ @@ -142022,6 +142951,15 @@ /obj/machinery/power/apc/intrepid/north, /turf/simulated/floor/carpet/rubber, /area/shuttle/intrepid/crew_compartment) +"uSe" = ( +/obj/structure/railing/mapped, +/obj/effect/floor_decal/corner/black{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/survey_probe/magnet, +/turf/simulated/floor/plating, +/area/hangar/auxiliary) "uSp" = ( /obj/machinery/telecomms/server/presets/common, /turf/simulated/floor/bluegrid, @@ -142930,17 +143868,6 @@ /obj/structure/railing/mapped, /turf/simulated/floor/plating, /area/engineering/bluespace_drive) -"uZm" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/firealarm/east, -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hangar/auxiliary) "uZn" = ( /obj/structure/railing/mapped{ dir = 8 @@ -143374,12 +144301,6 @@ icon_state = "freezer" }, /area/antag/mercenary) -"vcf" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/carpet/rubber, -/area/rnd/xenoarch_atrium) "vcg" = ( /obj/machinery/door/blast/shutters{ dir = 2; @@ -143487,24 +144408,6 @@ /obj/random/contraband, /turf/simulated/floor/tiled/dark, /area/maintenance/wing/port/far) -"vdb" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/powered/pump/filled, -/obj/effect/floor_decal/corner/dark_green, -/obj/effect/floor_decal/corner/black{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/hangar/canary) "vde" = ( /obj/structure/railing/mapped{ dir = 1 @@ -143591,15 +144494,6 @@ }, /turf/simulated/floor/tiled, /area/rnd/hallway/secondary) -"vdn" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hangar/auxiliary) "vdy" = ( /obj/structure/table/rack, /obj/machinery/light{ @@ -143962,6 +144856,12 @@ /obj/item/pen, /turf/simulated/floor/carpet, /area/bridge/meeting_room) +"vgb" = ( +/obj/effect/floor_decal/industrial/hatch_door/red{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenoarch_atrium) "vgi" = ( /obj/machinery/atmospherics/pipe/simple/hidden/fuel{ dir = 1 @@ -144026,15 +144926,6 @@ "vgr" = ( /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/bridge/aibunker) -"vgw" = ( -/obj/effect/floor_decal/corner/black{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/hangar/canary) "vgB" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 @@ -144547,25 +145438,6 @@ name = "mossy grass" }, /area/horizon/holodeck/source_konyang) -"vkm" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/glass_command{ - dir = 1; - name = "Canary Hangar"; - req_one_access = list(73) - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular/open{ - dir = 4; - id = "hangarlockdown"; - name = "Hangar Lockdown" - }, -/turf/simulated/floor/tiled/dark/full, -/area/hangar/canary) "vkq" = ( /turf/simulated/wall/shuttle/unique/ert{ icon_state = "0,2" @@ -144979,6 +145851,15 @@ "voo" = ( /turf/simulated/floor/tiled/full, /area/horizon/stairwell/central) +"vor" = ( +/obj/effect/floor_decal/corner/black{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/hangar/auxiliary) "vos" = ( /obj/effect/floor_decal/plaque{ desc = "The Stellar Corporate Conglomerate Logo Engraved in bronze."; @@ -145307,11 +146188,6 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/xenobiology/dissection) -"vqx" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/floodlight, -/turf/simulated/floor/tiled/full, -/area/hangar/auxiliary) "vqC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -149806,21 +150682,12 @@ }, /turf/unsimulated/floor, /area/antag/mercenary) -"vZT" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/dark_green{ +"wab" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, -/obj/machinery/camera/network/first_deck{ - c_tag = "First Deck - Hangar 10"; - dir = 4 - }, /turf/simulated/floor/tiled, -/area/hangar/canary) +/area/hangar/auxiliary) "wac" = ( /obj/structure/shuttle_part/scc_space_ship{ icon_state = "d3-4-f" @@ -149937,6 +150804,18 @@ }, /turf/simulated/floor/tiled/dark/full, /area/bridge/aibunker) +"waF" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/effect/floor_decal/corner/black{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/hangar/auxiliary) "waH" = ( /obj/effect/floor_decal/corner/white/diagonal, /obj/machinery/door/airlock{ @@ -150093,13 +150972,6 @@ }, /turf/simulated/floor/tiled, /area/operations/lower/machinist/surgicalbay) -"wce" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/tiled/full, -/area/hangar/auxiliary) "wco" = ( /obj/effect/floor_decal/carpet{ dir = 1 @@ -150545,27 +151417,6 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"wfo" = ( -/obj/effect/floor_decal/corner_wide/purple{ - dir = 8 - }, -/obj/effect/floor_decal/corner_wide/purple{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) "wfp" = ( /obj/structure/bed/stool/chair/shuttle{ dir = 4 @@ -151344,6 +152195,13 @@ /obj/item/device/flashlight/lamp/stage, /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_theatre) +"wlH" = ( +/obj/effect/map_effect/window_spawner/full/shuttle/scc{ + spawn_firedoor = 1; + spawn_grille = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/quark/cargo_hold) "wlM" = ( /obj/effect/floor_decal/industrial/warning{ dir = 10 @@ -151391,6 +152249,21 @@ icon_state = "dark_preview" }, /area/centcom/control) +"wml" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/obj/machinery/camera/network/first_deck{ + c_tag = "First Deck - Hangar 10"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hangar/auxiliary) "wmo" = ( /obj/structure/platform/ledge, /obj/structure/platform/ledge{ @@ -152595,12 +153468,6 @@ }, /turf/space/dynamic, /area/horizon/exterior) -"wuc" = ( -/obj/structure/platform_deco{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/hangar/auxiliary) "wui" = ( /obj/effect/floor_decal/corner_wide/yellow{ dir = 5 @@ -153252,6 +154119,23 @@ icon_state = "14,1" }, /area/shuttle/legion) +"wyM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/outline_door/red{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline_straight/red{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline_straight/red, +/obj/structure/closet/walllocker/emerglocker/north, +/obj/structure/bed/handrail{ + pixel_y = 2 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/quark/cockpit) "wyN" = ( /obj/effect/floor_decal/corner_wide/purple{ dir = 10 @@ -153428,6 +154312,21 @@ }, /turf/simulated/floor/exoplanet/grass/grove, /area/centcom/shared_dream) +"wAb" = ( +/obj/machinery/atmospherics/binary/pump/fuel{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/shuttle/quark/cargo_hold) "wAc" = ( /obj/structure/platform{ dir = 1 @@ -153917,6 +154816,20 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/full, /area/horizon/hallway/deck_three/primary/central) +"wDA" = ( +/obj/machinery/atmospherics/portables_connector/supply{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/floor_decal/industrial/hatch_small/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/quark/cargo_hold) "wDB" = ( /obj/effect/floor_decal/corner/green/full{ dir = 8 @@ -154828,6 +155741,11 @@ /obj/structure/platform/ledge, /turf/simulated/open, /area/hallway/primary/central_one) +"wJQ" = ( +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/plating, +/area/hangar/auxiliary) "wJS" = ( /obj/effect/step_trigger/thrower/shuttle/north, /turf/space/transit/north, @@ -156268,6 +157186,15 @@ /obj/effect/spider/stickyweb, /turf/simulated/floor/exoplanet/barren/raskara, /area/centcom/shared_dream) +"wTA" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/obj/machinery/light/spot{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hangar/auxiliary) "wTE" = ( /turf/simulated/floor/exoplanet/water/shallow{ dir = 1; @@ -156276,6 +157203,16 @@ name = "coast" }, /area/horizon/holodeck/source_konyang) +"wTG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/hangar/auxiliary) "wTK" = ( /obj/machinery/door/firedoor{ dir = 4 @@ -156287,17 +157224,6 @@ /obj/effect/decal/cleanable/cobweb2, /turf/simulated/floor/tiled/dark, /area/maintenance/wing/port/far) -"wTM" = ( -/obj/machinery/camera/network/research{ - c_tag = "Research - Spectrometry"; - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/alarm/south, -/turf/simulated/floor/carpet/rubber, -/area/rnd/xenoarch_atrium) "wTR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -156563,6 +157489,31 @@ "wVV" = ( /turf/simulated/wall, /area/maintenance/wing/starboard/deck1) +"wVW" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ + dir = 8 + }, +/obj/item/hullbeacon/red{ + pixel_x = -8; + pixel_y = 6 + }, +/obj/effect/map_effect/marker_helper/airlock/exterior, +/obj/structure/bed/handrail{ + dir = 4; + pixel_x = -2 + }, +/obj/effect/map_effect/marker/airlock/shuttle{ + master_tag = "airlock_shuttle_quark"; + name = "airlock_shuttle_quark"; + req_one_access = list(65,47,74); + shuttle_tag = "Quark"; + cycle_to_external_air = 1 + }, +/turf/simulated/floor/reinforced, +/area/shuttle/quark/cargo_hold) "wWe" = ( /obj/machinery/atmospherics/pipe/simple/visible/purple{ dir = 4 @@ -156878,6 +157829,17 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering) +"wYr" = ( +/obj/structure/closet/crate, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/clothing/suit/space/emergency, +/obj/item/tank/air, +/obj/item/clothing/head/helmet/space/emergency, +/obj/item/clothing/suit/space/emergency, +/obj/item/tank/air, +/obj/item/clothing/head/helmet/space/emergency, +/turf/simulated/floor/plating, +/area/hangar/auxiliary) "wYv" = ( /obj/effect/floor_decal/corner/mauve{ dir = 10 @@ -156971,12 +157933,6 @@ }, /turf/simulated/floor/carpet/rubber, /area/shuttle/intrepid/crew_compartment) -"wYU" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/hangar/auxiliary) "wYX" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -157353,18 +158309,6 @@ }, /turf/space/dynamic, /area/horizon/exterior) -"xbH" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/firealarm/east, -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/emergency_closet, -/turf/simulated/floor/tiled, -/area/hangar/auxiliary) "xbJ" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'HIGH VOLTAGE'"; @@ -157550,6 +158494,30 @@ icon_state = "7,0" }, /area/centcom/specops) +"xcP" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1; + level = 2 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 6 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = 36; + pixel_y = 4 + }, +/obj/structure/bed/handrail{ + dir = 8; + pixel_x = 2 + }, +/turf/simulated/floor/tiled, +/area/shuttle/quark/cockpit) "xcV" = ( /turf/unsimulated/wall/fakeairlock{ icon_state = "door_locked"; @@ -157680,18 +158648,6 @@ /obj/machinery/constructable_frame/machine_frame, /turf/simulated/floor/carpet/rubber, /area/maintenance/engineering/auxillary) -"xdK" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/light/spot{ - dir = 1 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hangar/auxiliary) "xdR" = ( /obj/effect/floor_decal/corner/dark_blue/full, /obj/structure/table/reinforced, @@ -158079,12 +159035,6 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"xgn" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/hangar/auxiliary) "xgx" = ( /obj/effect/floor_decal/corner/beige/full{ dir = 4 @@ -158437,15 +159387,6 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/xenobiology/xenoflora) -"xjq" = ( -/obj/effect/floor_decal/corner/black{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/hangar/canary) "xjr" = ( /obj/machinery/atmospherics/pipe/manifold/hidden, /obj/effect/map_effect/marker/airlock/docking{ @@ -158684,18 +159625,6 @@ /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/research_port) -"xkK" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/effect/floor_decal/corner/black{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/hangar/canary) "xkQ" = ( /obj/structure/railing/mapped{ dir = 8 @@ -159051,6 +159980,15 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/crew_quarters/lounge/bar) +"xnf" = ( +/obj/machinery/atmospherics/portables_connector/fuel{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/effect/floor_decal/industrial/hatch_small/yellow, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/shuttle/quark/cargo_hold) "xnl" = ( /obj/structure/sign/securearea{ desc = "A caution sign which reads 'CAUTION: BRIG AREA' and 'SECURE AREA'."; @@ -160408,13 +161346,6 @@ }, /turf/simulated/floor/shuttle/dark_red, /area/shuttle/hapt) -"xxL" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/platform_stairs/full, -/turf/simulated/floor/tiled/dark, -/area/hangar/auxiliary) "xxP" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 9 @@ -160453,18 +161384,6 @@ /obj/structure/railing/mapped, /turf/simulated/floor/tiled/dark/full, /area/engineering/bluespace_drive) -"xxX" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/obj/machinery/light/spot{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hangar/auxiliary) "xya" = ( /obj/structure/extinguisher_cabinet/north, /obj/effect/floor_decal/corner/brown{ @@ -160719,6 +161638,21 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/hapt) +"xzQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline_door/red{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/quark/cargo_hold) "xzW" = ( /obj/effect/floor_decal/spline/plain{ dir = 10 @@ -160953,11 +161887,6 @@ }, /turf/simulated/floor/tiled/white, /area/medical/ors) -"xBw" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/powered/pump/filled, -/turf/simulated/floor/tiled/full, -/area/hangar/auxiliary) "xBJ" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 1 @@ -161181,6 +162110,22 @@ color = "#8f5847" }, /area/centcom/evac) +"xDk" = ( +/obj/machinery/door/airlock/external, +/obj/effect/floor_decal/industrial/hatch/red, +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 4 + }, +/obj/effect/map_effect/marker/airlock/shuttle{ + master_tag = "airlock_shuttle_quark"; + name = "airlock_shuttle_quark"; + req_one_access = list(65,47,74); + shuttle_tag = "Quark"; + cycle_to_external_air = 1 + }, +/obj/effect/map_effect/marker_helper/airlock/exterior, +/turf/simulated/floor/plating, +/area/shuttle/quark/cargo_hold) "xDm" = ( /obj/machinery/light{ dir = 1 @@ -163199,10 +164144,6 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"xRv" = ( -/obj/structure/platform_stairs/full, -/turf/simulated/floor/plating, -/area/hangar/auxiliary) "xRw" = ( /obj/machinery/mech_recharger, /obj/effect/floor_decal/corner/red/diagonal, @@ -163876,17 +164817,6 @@ /obj/structure/flora/ausbushes/lavendergrass, /turf/simulated/floor/exoplanet/grass/grove, /area/centcom/shared_dream) -"xXt" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/hangar/auxiliary) "xXA" = ( /obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, /turf/simulated/floor/tiled/dark/full, @@ -164054,6 +164984,16 @@ }, /turf/simulated/floor/tiled/white, /area/hallway/medical) +"xYq" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/quark/cargo_hold) "xYu" = ( /obj/item/modular_computer/console/preset/security{ dir = 1 @@ -164531,12 +165471,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/custodial/disposals) -"ybm" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/hangar/auxiliary) "ybp" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/effect/floor_decal/corner_wide/green{ @@ -164722,6 +165656,20 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/full, /area/horizon/security/firing_range) +"ydc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/light/spot{ + dir = 8; + must_start_working = 1 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hangar/auxiliary) "ydg" = ( /obj/effect/landmark/entry_point/port{ name = "port, weapons range" @@ -164772,6 +165720,30 @@ /obj/effect/map_effect/marker_helper/airlock/interior, /turf/simulated/floor/plating, /area/engineering/engine_room) +"ydz" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline_door/red, +/obj/effect/floor_decal/industrial/outline_straight/red{ + dir = 8 + }, +/obj/structure/bed/handrail{ + dir = 4; + pixel_x = -2 + }, +/obj/effect/map_effect/marker/airlock/shuttle{ + master_tag = "airlock_shuttle_quark"; + name = "airlock_shuttle_quark"; + req_one_access = list(65,47,74); + shuttle_tag = "Quark"; + cycle_to_external_air = 1 + }, +/obj/machinery/light/small/red{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/quark/cargo_hold) "ydB" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/effect/floor_decal/industrial/warning{ @@ -164803,6 +165775,15 @@ }, /turf/simulated/floor/tiled/white, /area/centcom/shared_dream) +"ydP" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/hallway/engineering) "ydT" = ( /obj/machinery/light/small{ dir = 1 @@ -193183,7 +194164,7 @@ dJT qQE euj eTV -rZi +pDE sXU rMm bZC @@ -198595,7 +199576,7 @@ gPk sGo jry ppi -kvE +krx bPT flh ois @@ -199109,7 +200090,7 @@ uRV jjk iQn hPR -pKe +gPe tfA wnQ vBb @@ -202687,7 +203668,7 @@ erd fQC kNx qgi -gnn +qOX pYu eev eev @@ -202946,7 +203927,7 @@ xgP weO aWP rEl -ttc +ooT tKi tKi vcp @@ -203205,7 +204186,7 @@ aWP nup gua tKi -mKG +fvx bGM aWP feD @@ -203461,7 +204442,7 @@ kuQ aWP aWP aWP -jhH +lsQ aWP aWP aWP @@ -203715,25 +204696,25 @@ yag xjQ ngs mOd -ljM -kzJ -oFJ -kcg -gOe -kcg -vZT -mdH -dJJ -ifP -dtN -dtN -tbP -loq -urO -ggS -aqp -aqp -aqp +bGq +iNG +roF +rcT +rcT +rcT +wml +osQ +tPC +ydc +llM +llM +aQF +akP +uRN +dYq +nCG +nCG +nCG vGV kVe kVe @@ -203971,26 +204952,26 @@ fQC ugY kMV lnF -asC -pPV -mhq -vgw -vgw -ndN -mio -mio -mio -lTU -xkK -mio -mio -mio -vgw -vgw -qsx -syS -awX -aqp +eVl +itX +pdW +uRx +uRx +pdW +pdW +pdW +pdW +mVB +gVQ +pdW +uRx +pdW +uRx +uRx +qOu +nCG +nCG +nCG liP eSV eSV @@ -204227,27 +205208,27 @@ nww fUC pYy gaE -qmE -nNh -pPV -oEp -iCI -iCI -hxj -bXH -bXH -bXH -bXH -bXH -bXH -bXH -bXH -bXH -bXH -djn -mlc -tAU -mlc +lWk +hOL +nHL +qsq +moI +moI +oDL +oDL +oDL +ovE +oDL +osx +nSJ +mgm +nSJ +moI +moI +moI +moI +moI +nyL eSV eSV eSV @@ -204485,26 +205466,26 @@ num pYy gaE qmE -nNh -pPV -eYj -aBK -hPZ -qLe -sQZ -dLE -rrB -vSI -mcC -jAy -xVt -cxe -mWR -mWR -pPH -mlc -tAU -mlc +cBb +nHL +adX +bJa +haE +nSv +hHq +dtQ +sdo +oDL +wlH +nSJ +scJ +nSJ +ubi +nSJ +eIl +rWO +bJa +nyL eSV eSV eSV @@ -204733,7 +205714,7 @@ bOv sEw wvI xqE -tjl +spr sFd lPW cJJ @@ -204741,27 +205722,27 @@ cJJ lPW tJR aCn -cEv -iOn -pPV -eYj -ndI -vDu -cxc -sQO -jHU -bNx -vuJ -bsH -cLY -tGj -krG -bzc -mWR -pPH -mlc -tAU -mlc +tiR +fWc +nHL +adX +oDL +gbV +oDL +oDL +rid +aQw +bBq +xnf +nSJ +amU +nSJ +pjM +nSJ +qRp +qRp +bJa +nyL eSV eSV eSV @@ -204986,39 +205967,39 @@ fTy mVd fTy nvV -srN -aeJ -lGb -ghn -pqO -stn -mJN +bwA +ovh +aXv +idc +tva +bVW +khF hBn hBn -kzr +mpQ bGQ aXh jKO -nGZ -pPV -eYj -mWR -pLq -bOY -mzd -xmK -ogU -dLt -laX -cxZ -sIp -lRr -mWR -mWR -pPH -mlc -tAU -qog +kVq +gno +adX +oDL +nqj +ydz +hwM +xzQ +wAb +cBs +tja +nSJ +wyM +dEa +nnD +rml +ssh +qRp +bJa +qVY eSV eSV eSV @@ -205244,38 +206225,38 @@ pCs pCs sFd mDT -qKo +bWT eVN tgZ -upi -sFd -aVU -uQU -oCq -koQ +cOi +vgb +dYf +dYf +dYf +guF gPv dYf -nNx -ows -pPV -bAM -sxy -keh -vVd -phV -mLw -vUN -skS -jio -wPX -cvz -uBW -mew -dJH -pPH -mlc -tAU -mlc +biK +rVP +edS +qFR +fBd +clS +doJ +cIk +nmI +tvy +uHt +eQE +uBB +kdB +eLC +hGU +bhO +ayB +cAY +bJa +nyL eSV eSV eSV @@ -205503,36 +206484,36 @@ aWZ aWZ aWZ aWZ -fsf +rKN +sRr xtK +raU +qbw +lpp xtK -xtK -xtK -xtK -xtK -tFL -wce +hlz +tzM hot -nNh -pPV -cGd -mWR -sck -wht -fFf -nax -mgK -sWe -tWm -aOx -utP -ieb -mWR -mWR -pPH -mlc -tAU -mlc +ttC +gno +bLb +xDk +rsh +dst +oDL +llY +azX +jrB +xYq +qRp +tDz +mzh +kBz +pvv +oZT +qRp +bJa +nyL eSV eSV eSV @@ -205763,33 +206744,33 @@ aWZ xko eVY xtK -xmb -qxn -nDy xtK -pYW -pYW +xtK +xtK +xtK +wYr +uQu hot -nNh -pPV -pEk -qSi -mJD -ulp -uSc -oPw -czo -day -eeK -xAk -oSv -maq -oiW -mWR -pPH -mlc -tAU -mlc +ttC +nHL +adX +oDL +gbV +oDL +oDL +qZs +aLw +dcy +qgM +nSJ +thg +xcP +cCQ +bFY +qNn +qRp +bJa +nyL eSV eSV eSV @@ -206018,35 +206999,35 @@ bkV qmb oek esr -kWQ -ipZ -lOT -fOL -mJQ +xsS xtK -bfs -vqx +xmb +qxn +nDy +xtK +oCk +fLi hot -nNh -pPV -pEk -oji -hmD -kOp -olx -suu -pEH -fsS -ioh -kDx -uaD -lBl -mWR -mWR -pPH -mlc -tAU -mlc +ttC +nHL +adX +bJa +wVW +nSv +kFX +mTJ +wDA +oDL +wlH +nSJ +tGR +nSJ +oBM +nSJ +htr +mUE +bJa +nyL kVe eSV eSV @@ -206274,36 +207255,36 @@ kHg wGp sId aWZ -wfo -xsS -nKB -sFn -vcf -wTM +cLJ +kWQ +ipZ +mfw +kDw +oub xtK -trW -vqx +mPQ +fLi hot -nNh -pPV -cXw -ltR -ltR -ltR -ltR -ltR -ltR -ltR -ltR -ltR -ltR -ltR -ltR -ltR -lTg -mlc -tAU -mlc +ttC +nHL +gWZ +tGr +tGr +oDL +oDL +oDL +jyG +oDL +jJN +nSJ +nSJ +nSJ +tGr +tGr +tGr +tGr +tGr +nyL kVe eSV eSV @@ -206533,34 +207514,34 @@ wjW aWZ jEG cLh -xtK +nKB wwN wwN wwN xtK -ppj -xBw +hjH +oyr hot -eOR -pPV -jJc -mOv -xjq -xjq -mOv -mOv -mOv -ekm -fPd -mOv -mOv -mOv -xjq -xjq -vdb -syS -hAZ -aqp +lmv +blQ +agI +eDV +eDV +agI +agI +agI +agI +sXX +vor +ygC +ygC +ygC +eDV +eDV +rNq +nCG +nCG +nCG liP eSV eSV @@ -206795,29 +207776,29 @@ xtK xtK xtK xtK -ppj -xBw -hot -bAq -vkm -nYw -fIO -fIO -fIO -fIO -fIO -fIO -cMM -lfj -sJN -sJN -sJN -pkE -sJN -sKc -aqp -aqp -aqp +mvm +wJQ +hTe +ldo +huy +huy +huy +huy +huy +huy +huy +huy +lDO +wab +gaE +gaE +gaE +gaE +gaE +qEj +nCG +nCG +nCG eSV eSV eSV @@ -207054,27 +208035,27 @@ vKN xtK xtK xtK -xXt -nqZ -pPV -pPV -pPV -pPV -pPV -pPV -pPV -pPV -pPV -pPV -pPV -pPV -pPV -pPV -pPV -kgC -syS -hAZ -aqp +hYw +lmv +vFp +vFp +itX +iNg +uRx +uRx +pdW +pdW +pdW +pdW +pdW +pdW +pdW +uRx +uRx +mmm +nCG +nCG +nCG eSV eSV eSV @@ -207311,8 +208292,11 @@ pbY xvP jeq xtK -hot -mSq +cWE +lmv +vFp +jab +gJo qsq moI moI @@ -207326,11 +208310,8 @@ moI moI moI moI -moI -moI -moI -nyL -cCq +bJa +bJa nyL eSV eSV @@ -207568,26 +208549,26 @@ cIW vys fIp xtK -rrR -ows -xRv +hot +lmv +vFp +ujw +aQS +adX +aBK +hPZ +qLe +sQZ +dLE +rrB +vSI +mcC +jAy +xVt +cxe bJa bJa bJa -bJa -bJa -bJa -bJa -bJa -bJa -bJa -bJa -bJa -bJa -bJa -bJa -nyL -cCq nyL eSV eSV @@ -207825,26 +208806,26 @@ aoD kAG shb xtK -kIz -ows -xRv +lsi +ofu +vFp +gKn +hun +adX +ndI +vDu +cxc +sQO +jHU +bNx +vuJ +bsH +cLY +tGj +krG +bzc bJa bJa -bJa -bJa -dTk -bJa -tjN -bJa -bJa -bJa -bJa -bJa -bJa -bJa -bJa -nyL -cCq nyL eSV eSV @@ -208082,27 +209063,27 @@ aTv xtK xtK xtK -xdK -mSq +fZF +wTG +vFp +vFp +gno adX bJa -bJa -bJa -bJa -bJa -bJa -bJa -bJa -bJa -bJa -bJa -bJa +pLq +bOY +mzd +xmK +ogU +dLt +laX +cxZ +sIp +lRr bJa bJa bJa nyL -cCq -mNS eSV eSV eSV @@ -208339,27 +209320,27 @@ hUC qwT fZu lPW -hot -mSq -adX +lBZ +asY +aIs +aIs +edS +eAU +elR +keh +vVd +phV +mLw +vUN +skS +jio +wPX +cvz +uBW +mew +dJH bJa -bJa -bJa -bJa -bJa -bJa -bJa -pMP -bJa -bJa -bJa -bJa -bJa -bJa -bJa -nyL -cCq -nyL +mNS eSV eSV eSV @@ -208597,25 +209578,25 @@ xtK aVg lPW hot -mSq +wTG +vFp +vFp +gno adX bJa +sck +wht +fFf +nax +mgK +sWe +tWm +aOx +utP +ieb bJa bJa bJa -bJa -bJa -bJa -bJa -bJa -bJa -bJa -bJa -bJa -bJa -bJa -nyL -cCq nyL kVe eSV @@ -208853,26 +209834,26 @@ xYn xtK ocQ lPW -hot -mSq +qmE +ofu +vFp +lIZ +sCE adX +qSi +mJD +ulp +uSc +oPw +czo +day +eeK +xAk +oSv +maq +oiW bJa bJa -bJa -bJa -bJa -bJa -bJa -bJa -bJa -oSD -bJa -bJa -bJa -bJa -bJa -nyL -cCq nyL kVe eSV @@ -209111,26 +210092,26 @@ xtK iKo lPW nrK -mSq -gWZ -tGr -tGr -tGr -tGr -tGr -tGr -tGr -tGr -tGr -tGr -tGr -tGr -tGr -tGr -tGr -nCG -hbU -nCG +lmv +vFp +hMA +uSe +adX +oji +hmD +kOp +olx +suu +pEH +fsS +ioh +kDx +uaD +lBl +bJa +bJa +bJa +nyL eSV eSV eSV @@ -209368,26 +210349,26 @@ xtK iNi lPW hot -cVg -ygC -agI -agI -ygC -ygC -ygC -ygC -ygC -ygC -ygC -xxL -eDV -eDV -agI -agI -ufR -nCG -dgr -nCG +ttC +vFp +ovD +trd +gWZ +tGr +tGr +tGr +tGr +tGr +tGr +tGr +tGr +tGr +tGr +tGr +tGr +bJa +bJa +nyL eSV eSV eSV @@ -209625,25 +210606,25 @@ xtK aOv lPW xfH -iHM +hrg dHW dHW -dHW -dHW -dHW -dHW -dHW -dEl -vFp -vFp -ifL -wuc -vFp -vFp -vFp -xgn +bKI +hca +iHL +iHL +hca +waF +ygC +ygC +ygC +ygC +ygC +eDV +eDV +gHG +nCG nCG -dgr nCG eSV eSV @@ -209882,25 +210863,25 @@ jPp vUe lPW fBi -cpU -kDE -mSQ -qQS -mtp -qQS -cPT -uZm -mFu -vdn -mRt -tRH -mQB -xxX -vdn -vdn -xbH -wYU -ybm +omO +hOP +emz +ubr +btL +ubr +bmU +rHG +qAd +dYf +dXn +dYf +laP +wTA +dYf +dYf +iIF +nCG +nCG nCG eSV eSV @@ -261249,11 +262230,11 @@ abk wui lMh jYB -hso -haW -sre +mmy +aST +eyj hYc -oCX +nls qJZ nDm vfz @@ -261506,11 +262487,11 @@ aJB ftY sxt uXO -gfc -fLV -rwn +fDV +ydP +gRi tkx -hHV +iwr hoS dMU xzc @@ -382542,31 +383523,31 @@ fzL eSV eSV eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV +hPP +hPP +hPP +hPP +hPP +hPP +hPP +hPP +hPP +hPP +hPP +hPP +hPP +hPP +hPP +hPP +hPP +hPP +hPP +hPP +hPP +hPP +hPP +hPP +hPP eSV eSV eSV @@ -382799,31 +383780,31 @@ fzL eSV eSV eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV +hPP +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +hPP eSV eSV eSV @@ -383056,31 +384037,31 @@ fzL eSV eSV eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV +hPP +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +hPP eSV eSV eSV @@ -383313,31 +384294,31 @@ fzL eSV eSV eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV +hPP +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +hPP eSV eSV eSV @@ -383570,31 +384551,31 @@ fzL eSV eSV eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV +hPP +xeQ +xeQ +xeQ +hPP +hPP +hPP +hPP +hPP +hPP +hPP +hPP +hPP +hPP +hPP +hPP +hPP +hPP +hPP +hPP +hPP +xeQ +xeQ +xeQ +hPP eSV eSV eSV @@ -383827,31 +384808,31 @@ fzL eSV eSV eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV +hPP +xeQ +xeQ +xeQ +hPP +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +hPP +xeQ +xeQ +xeQ +hPP eSV eSV eSV @@ -384084,31 +385065,31 @@ fzL eSV eSV eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV +hPP +xeQ +xeQ +xeQ +hPP +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +hPP +xeQ +xeQ +xeQ +hPP eSV eSV eSV @@ -384341,31 +385322,31 @@ fzL eSV eSV eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV +hPP +xeQ +xeQ +xeQ +hPP +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +hPP +xeQ +xeQ +xeQ +hPP eSV eSV eSV @@ -384598,31 +385579,31 @@ fzL eSV eSV eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV +hPP +xeQ +xeQ +xeQ +hPP +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +hPP +xeQ +xeQ +xeQ +hPP eSV eSV eSV @@ -384855,31 +385836,31 @@ fzL eSV eSV eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV +hPP +xeQ +xeQ +xeQ +hPP +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +hPP +xeQ +xeQ +xeQ +hPP eSV eSV eSV @@ -385112,31 +386093,31 @@ fzL eSV eSV eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV +hPP +xeQ +xeQ +xeQ +kkQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +hPP +xeQ +xeQ +xeQ +hPP eSV eSV eSV @@ -385369,31 +386350,31 @@ fzL eSV eSV eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV +hPP +xeQ +xeQ +xeQ +hPP +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +hPP +xeQ +xeQ +xeQ +hPP eSV eSV eSV @@ -385626,31 +386607,31 @@ fzL eSV eSV eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV +hPP +xeQ +xeQ +xeQ +hPP +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +hPP +xeQ +xeQ +xeQ +hPP eSV eSV eSV @@ -385883,31 +386864,31 @@ fzL eSV eSV eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV +hPP +xeQ +xeQ +xeQ +hPP +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +hPP +xeQ +xeQ +xeQ +hPP eSV eSV eSV @@ -386140,31 +387121,31 @@ fzL eSV eSV eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV +hPP +xeQ +xeQ +xeQ +hPP +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +hPP +xeQ +xeQ +xeQ +hPP eSV eSV eSV @@ -386397,31 +387378,31 @@ fzL eSV eSV eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV +hPP +xeQ +xeQ +xeQ +hPP +hPP +hPP +hPP +hPP +hPP +hPP +hPP +hPP +hPP +hPP +hPP +hPP +hPP +hPP +hPP +hPP +xeQ +xeQ +xeQ +hPP eSV eSV eSV @@ -386654,31 +387635,31 @@ fzL eSV eSV eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV +hPP +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +hPP eSV eSV eSV @@ -386911,31 +387892,31 @@ fzL eSV eSV eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV +hPP +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +xeQ +hPP eSV eSV eSV @@ -387168,31 +388149,31 @@ fzL eSV eSV eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV +hPP +hPP +hPP +hPP +hPP +hPP +hPP +hPP +hPP +hPP +hPP +hPP +hPP +hPP +hPP +hPP +hPP +hPP +hPP +hPP +hPP +hPP +hPP +hPP +hPP eSV eSV eSV